From dd59f330e28468c67b69a1d4e352f4e5bafcb27f Mon Sep 17 00:00:00 2001 From: Peter Reilly Date: Thu, 7 Oct 2004 15:40:47 +0000 Subject: [PATCH] remove -noclasspath from build.sh and build.bat It was not BC and may have caused a gumpy glitch. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@276924 13f79535-47bb-0310-9956-ffa450edef68 --- WHATSNEW | 1 - build.bat | 2 +- build.sh | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/WHATSNEW b/WHATSNEW index 836a13794..719b509da 100644 --- a/WHATSNEW +++ b/WHATSNEW @@ -62,7 +62,6 @@ Other changes: * Added -noclasspath option to allow running ant WITHOUT using CLASSPATH env variable. Modified ant.bat to do this so that %CLASSPATH% is not looked at. - Modified build.sh and build.bat to use the option. Changes from Ant 1.6.2 to current Ant 1.6 CVS version ===================================================== diff --git a/build.bat b/build.bat index a3c0989db..0e9a1b8f4 100755 --- a/build.bat +++ b/build.bat @@ -28,7 +28,7 @@ call bootstrap\bin\ant.bat -lib lib/optional %1 %2 %3 %4 %5 %6 %7 %8 %9 goto cleanup :install_ant -call bootstrap\bin\ant.bat -nouserlib -noclasspath -lib lib/optional -Dant.install="%REAL_ANT_HOME%" %1 %2 %3 %4 %5 %6 %7 %8 %9 +call bootstrap\bin\ant.bat -nouserlib -lib lib/optional -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 82dab03d8..be1519f3a 100755 --- a/build.sh +++ b/build.sh @@ -52,5 +52,5 @@ else ANT_INSTALL="-emacs" fi -bootstrap/bin/ant -nouserlib -noclasspath -lib lib/optional "$ANT_INSTALL" $* +bootstrap/bin/ant -nouserlib -lib lib/optional "$ANT_INSTALL" $*