summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-03-22 18:33:05 +0000
committermichelou <michelou@epfl.ch>2006-03-22 18:33:05 +0000
commit095970154d54e09769410112e72b70f6a5ce2a77 (patch)
tree666b4d0abdf872377298825affbc5a54b8acf35b
parent246dc68a9b10f563f081e531870a7ee97f6e3058 (diff)
downloadscala-095970154d54e09769410112e72b70f6a5ce2a77.tar.gz
scala-095970154d54e09769410112e72b70f6a5ce2a77.tar.bz2
scala-095970154d54e09769410112e72b70f6a5ce2a77.zip
corrected initialization of variable _USER_CLAS...
corrected initialization of variable _USER_CLASSPATH in file generic-windows.tmpl
-rw-r--r--src/compiler/scala/tools/ant/templates/generic-windows.tmpl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/ant/templates/generic-windows.tmpl b/src/compiler/scala/tools/ant/templates/generic-windows.tmpl
index e9c29ef3e7..2320695701 100644
--- a/src/compiler/scala/tools/ant/templates/generic-windows.tmpl
+++ b/src/compiler/scala/tools/ant/templates/generic-windows.tmpl
@@ -30,7 +30,8 @@ if "%_EXTENSION_CLASSPATH%"=="" for %%f in ("%_SCALA_HOME%\lib\*.jar") do call :
set _BOOT_CLASSPATH=
if exist "%_SCALA_HOME%/lib/scala-library.jar" set _BOOT_CLASSPATH=%_SCALA_HOME%/lib/scala-library.jar
-set _USER_CLASSPATH=.
+set _USER_CLASSPATH=%CLASSPATH%
+if "%_USER_CLASSPATH%"=="" set _USER_CLASSPATH=.
set _ARGS=
:loop