From 65bbae5ae39fa78770da27fc165d38ac69966441 Mon Sep 17 00:00:00 2001 From: Peter Donald Date: Sun, 4 Feb 2001 00:51:59 +0000 Subject: [PATCH] Made sure env vars are cleaned Also added bootstrap jars to CLASSPATh because for some reason they were not being added otherwise ??? git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268571 13f79535-47bb-0310-9956-ffa450edef68 --- build.bat | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.bat b/build.bat index 98d535705..512ee745b 100755 --- a/build.bat +++ b/build.bat @@ -7,9 +7,10 @@ if exist bootstrap\lib\ant.jar if exist bootstrap\bin\ant.bat if exist bootstrap call bootstrap.bat :runAnt -set LOCALCLASSPATH=lib\parser.jar;lib\jaxp.jar +set LOCALCLASSPATH=lib\parser.jar;lib\jaxp.jar;bootstrap\lib\ant.jar for %%i in (lib\optional\*.jar) do call bootstrap\bin\lcp.bat "%%i" 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