summaryrefslogtreecommitdiff
path: root/test/scalatest
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2007-06-26 14:10:47 +0000
committermichelou <michelou@epfl.ch>2007-06-26 14:10:47 +0000
commit5081021e56bcbab1af14f09d3e7f50e42bb0f744 (patch)
tree8e48dc69e3cbf706893ecf8eab3588281b029ed5 /test/scalatest
parent94220cb34ea299a3edefc2f9b571b89b2b8fa59b (diff)
downloadscala-5081021e56bcbab1af14f09d3e7f50e42bb0f744.tar.gz
scala-5081021e56bcbab1af14f09d3e7f50e42bb0f744.tar.bz2
scala-5081021e56bcbab1af14f09d3e7f50e42bb0f744.zip
fixed SCALAC_OPTS
Diffstat (limited to 'test/scalatest')
-rwxr-xr-xtest/scalatest2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scalatest b/test/scalatest
index 4969a66226..6f726a4cda 100755
--- a/test/scalatest
+++ b/test/scalatest
@@ -726,7 +726,7 @@ if [ "$TEST_ALL" = "true" ]; then
fi;
SCALA="${BIN_DIR}scala";
-SCALAC_OPTS:="-deprecation -encoding iso-8859-1";
+[ -z "$SCALAC_OPTS" ] && SCALAC_OPTS="-deprecation -encoding iso-8859-1";
if [ "$USEFSC" = "true" ]; then
SCALAC_CMD="${BIN_DIR}fsc";
else