summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2005-10-14 09:00:05 +0000
committermichelou <michelou@epfl.ch>2005-10-14 09:00:05 +0000
commita5a299eecbaac37bb9ea5f369daf7043c6492642 (patch)
tree083dae16007c40c7ebde0ac430680537029a92f9
parent5354ca48d867b2d5b8e7bfc64ed4c13e015916bd (diff)
downloadscala-a5a299eecbaac37bb9ea5f369daf7043c6492642.tar.gz
scala-a5a299eecbaac37bb9ea5f369daf7043c6492642.tar.bz2
scala-a5a299eecbaac37bb9ea5f369daf7043c6492642.zip
- moved to bin/.nsc.bat.tmpl
-rw-r--r--build.support/scalac.bat.template39
1 files changed, 0 insertions, 39 deletions
diff --git a/build.support/scalac.bat.template b/build.support/scalac.bat.template
deleted file mode 100644
index e2d9540439..0000000000
--- a/build.support/scalac.bat.template
+++ /dev/null
@@ -1,39 +0,0 @@
-@echo off
-
-rem ##########################################################################
-rem # Copyright (C) 2002-2005 LAMP/EPFL
-rem #
-rem # This is free software; see the distribution for copying conditions.
-rem # There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
-rem # PARTICULAR PURPOSE.
-rem ##########################################################################
-
-if "%OS%"=="Windows_NT" @setlocal
-
-if "%SCALA_HOME%" == "" goto error1
-
-set _ARGS=
-:loop
-if '%1' == '' goto exec
-set _ARGS=%_ARGS% %1
-shift
-goto loop
-
-:exec
-set _JAVACMD=java
-set _PROPS=-Dscala.product=@PRODUCT@ -Dscala.version=@VERSION@
-set _MAIN=@MAIN@
-set _CPATH=@CPATH@
-
-rem echo %_JAVACMD% %_PROPS% -cp %_CPATH% %_MAIN% %_ARGS%
-%_JAVACMD% %_PROPS% -cp %_CPATH% %_MAIN% %_ARGS%
-
-rem ##########################################################################
-rem # errors
-
-:error1
-echo ERROR: environment variable SCALA_HOME is undefined. It should point to the directory containing the file %_VERSION%.
-goto end
-
-:end
-if "%OS%"=="Windows_NT" @endlocal