summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-12-23 23:09:06 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-12-23 23:09:20 +0100
commitec353f5fee16b9a2012ae2a2a4b1371f2228aae7 (patch)
treefc466353abe9b43be112f591f22b58b283080fc4 /solenv
parentf244b3120ef7bf183186bcf02cf4a9c4ab4faed7 (diff)
Fix JunitTest_comphelper_complex
Change-Id: Iaa1cb0eeddb0a4a1c67c30dcefbebb9965aa3e76
Diffstat (limited to 'solenv')
-rwxr-xr-xsolenv/bin/write_classpath.sh2
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