summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFrançois Garillot <francois@garillot.net>2014-03-11 15:38:28 +0100
committerFrançois Garillot <francois@garillot.net>2014-03-11 15:38:28 +0100
commita047057b89028052feb14c921be067383b119702 (patch)
treee61548c14e6a7a1a99007d60b57fa056e99bef58 /src
parent7f07d44bcc97ba8435e8c77393554571c9a006ad (diff)
downloadscala-a047057b89028052feb14c921be067383b119702.tar.gz
scala-a047057b89028052feb14c921be067383b119702.tar.bz2
scala-a047057b89028052feb14c921be067383b119702.zip
Fixes syntax error in unix runner.
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/ant/templates/tool-unix.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/ant/templates/tool-unix.tmpl b/src/compiler/scala/tools/ant/templates/tool-unix.tmpl
index 194d92367b..d6dc167dd8 100644
--- a/src/compiler/scala/tools/ant/templates/tool-unix.tmpl
+++ b/src/compiler/scala/tools/ant/templates/tool-unix.tmpl
@@ -156,7 +156,7 @@ while [[ $# -gt 0 ]]; do
java_args=("${java_args[@@]}" "$1")
scala_args=("${scala_args[@@]}" "$1")
# respect user-supplied -Dscala.usejavacp
- case "$1" in -Dscala.usejavacp) OVERRIDE_USEJAVACP="" esac
+ case "$1" in -Dscala.usejavacp) OVERRIDE_USEJAVACP="";; esac
shift
;;
-J*)