donaldp 01/02/26 18:16:06
Modified: . bootstrap.bat bootstrap.sh build.bat build.sh
Log:
Added -emacs flag.
Revision Changes Path
1.32 +1 -1 jakarta-ant/bootstrap.bat
Index: bootstrap.bat
===================================================================
RCS file: /home/cvs/jakarta-ant/bootstrap.bat,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- bootstrap.bat 2001/02/13 12:31:46 1.31
+++ bootstrap.bat 2001/02/27 02:16:06 1.32
@@ -59,7 +59,7 @@
xcopy /s/q %CLASSDIR% build\classes
-%JAVA% %ANT_OPTS% org.apache.tools.ant.Main bootstrap
+%JAVA% %ANT_OPTS% org.apache.tools.ant.Main -emacs bootstrap
echo.
echo ... Cleaning Up Build Directories
1.44 +1 -2 jakarta-ant/bootstrap.sh
Index: bootstrap.sh
===================================================================
RCS file: /home/cvs/jakarta-ant/bootstrap.sh,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- bootstrap.sh 2001/02/13 12:31:46 1.43
+++ bootstrap.sh 2001/02/27 02:16:06 1.44
@@ -77,8 +77,7 @@
cp -r ${CLASSDIR} build
-${JAVA_HOME}/bin/java -classpath ${CLASSPATH} org.apache.tools.ant.Main \
- -buildfile build.xml bootstrap
+${JAVA_HOME}/bin/java -classpath ${CLASSPATH} org.apache.tools.ant.Main
-emacs bootstrap
echo ... Cleaning Up Build Directories
1.27 +2 -2 jakarta-ant/build.bat
Index: build.bat
===================================================================
RCS file: /home/cvs/jakarta-ant/build.bat,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- build.bat 2001/02/04 00:51:59 1.26
+++ build.bat 2001/02/27 02:16:06 1.27
@@ -13,11 +13,11 @@
set LOCALCLASSPATH=
if not "%REAL_ANT_HOME%" == "" goto install_ant
-call bootstrap\bin\ant.bat %1 %2 %3 %4 %5 %6 %7 %8 %9
+call bootstrap\bin\ant.bat -emacs %1 %2 %3 %4 %5 %6 %7 %8 %9
goto cleanup
:install_ant
-call bootstrap\bin\ant.bat -Dant.install="%REAL_ANT_HOME%" %1 %2 %3 %4 %5 %6
%7 %8 %9
+call bootstrap\bin\ant.bat -emacs -Dant.install="%REAL_ANT_HOME%" %1 %2 %3
%4 %5 %6 %7 %8 %9
rem clean up
:cleanup
1.21 +1 -1 jakarta-ant/build.sh
Index: build.sh
===================================================================
RCS file: /home/cvs/jakarta-ant/build.sh,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- build.sh 2001/02/03 14:23:47 1.20
+++ build.sh 2001/02/27 02:16:06 1.21
@@ -26,5 +26,5 @@
ANT_INSTALL="-Dant.install=$REALANTHOME"
fi
-bootstrap/bin/ant $ANT_INSTALL $*
+bootstrap/bin/ant -emacs $ANT_INSTALL $*