summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-12-07 05:28:27 +0000
committerPaul Phillips <paulp@improving.org>2010-12-07 05:28:27 +0000
commitb8d567feef7ae70ac0a807aae69f9bfa9ae99724 (patch)
tree65a043a227207329cb4f3d22bde8324fae6fb657
parent43b59488c1568c2a738e1297bcf317c1a2a0bbee (diff)
downloadscala-b8d567feef7ae70ac0a807aae69f9bfa9ae99724.tar.gz
scala-b8d567feef7ae70ac0a807aae69f9bfa9ae99724.tar.bz2
scala-b8d567feef7ae70ac0a807aae69f9bfa9ae99724.zip
Looks like I'd gotten a little quote-happy there.
-rw-r--r--src/compiler/scala/tools/ant/templates/tool-unix.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/ant/templates/tool-unix.tmpl b/src/compiler/scala/tools/ant/templates/tool-unix.tmpl
index 4708462c62..2a42892739 100644
--- a/src/compiler/scala/tools/ant/templates/tool-unix.tmpl
+++ b/src/compiler/scala/tools/ant/templates/tool-unix.tmpl
@@ -68,7 +68,7 @@ fi
# -D options will be available as system properties.
declare -a java_args
declare -a scala_args
-CPSWITCH="-cp \"$TOOL_CLASSPATH\""
+CPSWITCH="-cp $TOOL_CLASSPATH"
while [ $# -gt 0 ]; do
case "$1" in
@@ -81,7 +81,7 @@ while [ $# -gt 0 ]; do
shift
;;
--usebootcp)
- CPSWITCH="-Xbootclasspath/a:\"$TOOL_CLASSPATH\""
+ CPSWITCH="-Xbootclasspath/a:$TOOL_CLASSPATH"
shift
;;
*)