conor 01/02/09 05:04:12
Modified: . Tag: ANT_13_BRANCH bootstrap.bat bootstrap.sh
Log:
Remove the code which unset the classpath. The concept here was to ensure
that a known classpath was used. However, when using Jikes, it is
sometimes necessary to specify rt.jar in the classpath at bootstrap time
Thanks to Henri Gomez <[EMAIL PROTECTED]>
for pointing this out.
Revision Changes Path
No revision
No revision
1.30.2.1 +1 -1 jakarta-ant/bootstrap.bat
Index: bootstrap.bat
===================================================================
RCS file: /home/cvs/jakarta-ant/bootstrap.bat,v
retrieving revision 1.30
retrieving revision 1.30.2.1
diff -u -r1.30 -r1.30.2.1
--- bootstrap.bat 2001/02/04 11:46:23 1.30
+++ bootstrap.bat 2001/02/09 13:04:10 1.30.2.1
@@ -29,7 +29,7 @@
set TOOLS=src\main\org\apache\tools
set CLASSDIR=classes
-SET CLASSPATH=%LOCALCLASSPATH%;%CLASSDIR%;src\main;
+SET CLASSPATH=%LOCALCLASSPATH%;%CLASSDIR%;src\main;%CLASSPATH%
echo JAVA_HOME=%JAVA_HOME%
echo JAVA=%JAVA%
1.42.2.1 +0 -2 jakarta-ant/bootstrap.sh
Index: bootstrap.sh
===================================================================
RCS file: /home/cvs/jakarta-ant/bootstrap.sh,v
retrieving revision 1.42
retrieving revision 1.42.2.1
diff -u -r1.42 -r1.42.2.1
--- bootstrap.sh 2001/02/04 12:00:54 1.42
+++ bootstrap.sh 2001/02/09 13:04:10 1.42.2.1
@@ -2,8 +2,6 @@
# You will need to specify JAVA_HOME if compiling with 1.2 or later.
-unset CLASSPATH
-
if [ "$JAVA_HOME" != "" ] ; then
if [ -f $JAVA_HOME/lib/tools.jar ] ; then
CLASSPATH=$CLASSPATH:$JAVA_HOME/lib/tools.jar