[Nice-commit] Nice/bin niceunit.bat,1.2,1.3 nicedoc.bat,1.2,1.3 niceclasspath.bat,1.1,1.2 nicec.bat,
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2005-01-16 01:03:58
|
Update of /cvsroot/nice/Nice/bin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6709/bin Modified Files: niceunit.bat nicedoc.bat niceclasspath.bat nicec.bat Log Message: Added quotes around classpathes (fixes #1102993). Index: nicec.bat =================================================================== RCS file: /cvsroot/nice/Nice/bin/nicec.bat,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** nicec.bat 30 Jul 2004 15:38:45 -0000 1.18 --- nicec.bat 16 Jan 2005 01:03:35 -0000 1.19 *************** *** 15,19 **** :gotNice ! java -Xms8M -classpath %NICEPATH%\nice.jar;%CLASSPATH% nice.tools.compiler.console.dispatch --runtime=%NICEPATH%\nice.jar %1 %2 %3 %4 %5 %6 %7 %8 %9 :end --- 15,19 ---- :gotNice ! java -Xms8M -classpath "%NICEPATH%\nice.jar;%CLASSPATH%" nice.tools.compiler.console.dispatch --runtime="%NICEPATH%\nice.jar" %1 %2 %3 %4 %5 %6 %7 %8 %9 :end Index: niceclasspath.bat =================================================================== RCS file: /cvsroot/nice/Nice/bin/niceclasspath.bat,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** niceclasspath.bat 16 Feb 2004 13:52:57 -0000 1.1 --- niceclasspath.bat 16 Jan 2005 01:03:35 -0000 1.2 *************** *** 8,27 **** set NICEPATH=c:\nice ! if exist %NICEPATH%\nice.jar goto end set NICEPATH="c:\Program Files\nice" ! if exist %NICEPATH%\nice.jar goto end set NICEPATH=c:\programs\nice ! if exist %NICEPATH%\nice.jar goto end set NICEPATH=d:\nice ! if exist %NICEPATH%\nice.jar goto end set NICEPATH="d:\Program Files\nice" ! if exist %NICEPATH%\nice.jar goto end set NICEPATH=d:\programs\nice ! if exist %NICEPATH%\nice.jar goto end goto error --- 8,27 ---- set NICEPATH=c:\nice ! if exist "%NICEPATH%\nice.jar" goto end set NICEPATH="c:\Program Files\nice" ! if exist "%NICEPATH%\nice.jar" goto end set NICEPATH=c:\programs\nice ! if exist "%NICEPATH%\nice.jar" goto end set NICEPATH=d:\nice ! if exist "%NICEPATH%\nice.jar" goto end set NICEPATH="d:\Program Files\nice" ! if exist "%NICEPATH%\nice.jar" goto end set NICEPATH=d:\programs\nice ! if exist "%NICEPATH%\nice.jar" goto end goto error *************** *** 39,43 **** :gotNiceEnvVar ! if not exist %NICE%\nice.jar goto envError set NICEPATH=%NICE% --- 39,43 ---- :gotNiceEnvVar ! if not exist "%NICE%\nice.jar" goto envError set NICEPATH=%NICE% Index: nicedoc.bat =================================================================== RCS file: /cvsroot/nice/Nice/bin/nicedoc.bat,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** nicedoc.bat 30 Jul 2004 15:38:45 -0000 1.2 --- nicedoc.bat 16 Jan 2005 01:03:35 -0000 1.3 *************** *** 15,19 **** :gotNice ! java -classpath %NICEPATH%\nice.jar;%CLASSPATH% nice.tools.doc.dispatch %1 %2 %3 %4 %5 %6 %7 %8 %9 :end --- 15,19 ---- :gotNice ! java -classpath "%NICEPATH%\nice.jar;%CLASSPATH%" nice.tools.doc.dispatch %1 %2 %3 %4 %5 %6 %7 %8 %9 :end Index: niceunit.bat =================================================================== RCS file: /cvsroot/nice/Nice/bin/niceunit.bat,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** niceunit.bat 30 Jul 2004 15:38:45 -0000 1.2 --- niceunit.bat 16 Jan 2005 01:03:34 -0000 1.3 *************** *** 15,19 **** :gotNice ! java -classpath %NICEPATH%\nice.jar;%CLASSPATH% nice.tools.unit.console.dispatch %1 %2 %3 %4 %5 %6 %7 %8 %9 :end --- 15,19 ---- :gotNice ! java -classpath "%NICEPATH%\nice.jar;%CLASSPATH%" nice.tools.unit.console.dispatch %1 %2 %3 %4 %5 %6 %7 %8 %9 :end |