conor 01/02/04 03:46:23
Modified: . bootstrap.bat bootstrap.sh
Log:
Copy - which is to save compiling files which have already been compiled
now goes to the right place.
Revision Changes Path
1.30 +2 -1 jakarta-ant/bootstrap.bat
Index: bootstrap.bat
===================================================================
RCS file: /home/cvs/jakarta-ant/bootstrap.bat,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- bootstrap.bat 2001/02/02 04:58:54 1.29
+++ bootstrap.bat 2001/02/04 11:46:23 1.30
@@ -41,6 +41,7 @@
if not exist %CLASSDIR% mkdir %CLASSDIR%
if not exist build mkdir build
+if not exist build\classes mkdir build\classes
echo.
echo ... Compiling Ant Classes
@@ -56,7 +57,7 @@
echo.
echo ... Building Ant Distribution
-xcopy /s/q %CLASSDIR% build
+xcopy /s/q %CLASSDIR% build\classes
%JAVA% %ANT_OPTS% org.apache.tools.ant.Main bootstrap
1.41 +2 -2 jakarta-ant/bootstrap.sh
Index: bootstrap.sh
===================================================================
RCS file: /home/cvs/jakarta-ant/bootstrap.sh,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- bootstrap.sh 2001/02/02 04:58:54 1.40
+++ bootstrap.sh 2001/02/04 11:46:23 1.41
@@ -58,7 +58,7 @@
export CLASSPATH
mkdir -p ${CLASSDIR}
-mkdir -p build
+mkdir -p build/classes
echo ... Compiling Ant Classes
@@ -77,7 +77,7 @@
echo ... Building Ant Distribution
-cp -r ${CLASSDIR} build
+cp -r ${CLASSDIR} build/classes
${JAVA_HOME}/bin/java -classpath ${CLASSPATH} org.apache.tools.ant.Main \
-buildfile build.xml bootstrap