summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-07-14 17:00:28 +0000
committermichelou <michelou@epfl.ch>2006-07-14 17:00:28 +0000
commit5c25a0511871c1e9da4188d67446f360c65b896c (patch)
tree01f69cfd5df4bf29599a5f28f899ba2a68ed1799 /src/compiler
parentf964ab66d62b7cee249d89989831f7cd74c76f0a (diff)
downloadscala-5c25a0511871c1e9da4188d67446f360c65b896c.tar.gz
scala-5c25a0511871c1e9da4188d67446f360c65b896c.tar.bz2
scala-5c25a0511871c1e9da4188d67446f360c65b896c.zip
EXTENSION_CLASSPATH now contains both files/dir...
EXTENSION_CLASSPATH now contains both files/dirs on Windows
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/tools/ant/templates/tool-windows.tmpl3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/compiler/scala/tools/ant/templates/tool-windows.tmpl b/src/compiler/scala/tools/ant/templates/tool-windows.tmpl
index b9b8682efb..cd6139aa8c 100644
--- a/src/compiler/scala/tools/ant/templates/tool-windows.tmpl
+++ b/src/compiler/scala/tools/ant/templates/tool-windows.tmpl
@@ -27,6 +27,9 @@ if "%_JAVACMD%"=="" set _JAVACMD=java
set _EXTENSION_CLASSPATH=@extclasspath@
if "%_EXTENSION_CLASSPATH%"=="" (
for %%f in ("%_SCALA_HOME%\lib\*") do call :add_cpath "%%f"
+ if "%OS%"=="Windows_NT" (
+ for /d %%f in ("%_SCALA_HOME%\lib\*") do call :add_cpath "%%f"
+ )
)
set _BOOT_CLASSPATH=@bootclasspath@