diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-12-23 23:09:06 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-12-23 23:09:20 +0100 |
commit | ec353f5fee16b9a2012ae2a2a4b1371f2228aae7 (patch) | |
tree | fc466353abe9b43be112f591f22b58b283080fc4 /solenv/bin/write_classpath.sh | |
parent | f244b3120ef7bf183186bcf02cf4a9c4ab4faed7 (diff) |
Fix JunitTest_comphelper_complex
Change-Id: Iaa1cb0eeddb0a4a1c67c30dcefbebb9965aa3e76
Diffstat (limited to 'solenv/bin/write_classpath.sh')
-rwxr-xr-x | solenv/bin/write_classpath.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/write_classpath.sh b/solenv/bin/write_classpath.sh index 29aeecb81abe..4b9fd6bcbbf4 100755 --- a/solenv/bin/write_classpath.sh +++ b/solenv/bin/write_classpath.sh @@ -7,7 +7,7 @@ base='Class-Path: ' while [ "${1}" != "" ]; do p="$1" shift - echo "$base $1" >> $dest + echo "$base $p" >> $dest base=' ' done |