Browse Source

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
master
Peter Reilly 20 years ago
parent
commit
dd59f330e2
3 changed files with 2 additions and 3 deletions
  1. +0
    -1
      WHATSNEW
  2. +1
    -1
      build.bat
  3. +1
    -1
      build.sh

+ 0
- 1
WHATSNEW View File

@@ -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
=====================================================


+ 1
- 1
build.bat View File

@@ -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


+ 1
- 1
build.sh View File

@@ -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" $*


Loading…
Cancel
Save