From 7f76769aba1d44cd44eb56ebadbbbe9068859c68 Mon Sep 17 00:00:00 2001 From: Peter Donald Date: Tue, 27 Feb 2001 02:16:06 +0000 Subject: [PATCH] Added -emacs flag. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268737 13f79535-47bb-0310-9956-ffa450edef68 --- bootstrap.bat | 2 +- bootstrap.sh | 3 +-- build.bat | 4 ++-- build.sh | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/bootstrap.bat b/bootstrap.bat index 8b1578ef5..4368dfdd2 100755 --- a/bootstrap.bat +++ b/bootstrap.bat @@ -59,7 +59,7 @@ echo ... Building Ant Distribution 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 diff --git a/bootstrap.sh b/bootstrap.sh index c50b50c4a..52c6e1348 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -77,8 +77,7 @@ echo ... Building Ant Distribution 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 diff --git a/build.bat b/build.bat index 512ee745b..11c91ebfa 100755 --- a/build.bat +++ b/build.bat @@ -13,11 +13,11 @@ set CLASSPATH=%LOCALCLASSPATH%;%CLASSPATH% 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 diff --git a/build.sh b/build.sh index 9e1725786..7858d1b05 100755 --- a/build.sh +++ b/build.sh @@ -26,5 +26,5 @@ if [ "$REALANTHOME" != "" ] ; then ANT_INSTALL="-Dant.install=$REALANTHOME" fi -bootstrap/bin/ant $ANT_INSTALL $* +bootstrap/bin/ant -emacs $ANT_INSTALL $*