> > conor 00/07/12 08:54:19 > > > > Modified: . bootstrap.bat build.bat build.xml > > src/bin ant.bat > > Added: src/bin lcp.bat > > Removed: . lcp.bat > > Log: > > This had the net effect of removing lcp.bat altogether. Was that the intended > action? ;-) > Oops! What I really meant to say was that if you're going to move lcp.bat, bootstrap.bat needs to be updated accordingly. (See patch below.)
-- Christopher Elkins -- Index: bootstrap.bat =================================================================== RCS file: /home/cvspublic/jakarta-ant/bootstrap.bat,v retrieving revision 1.13 diff -u -r1.13 bootstrap.bat --- bootstrap.bat 2000/07/12 15:54:07 1.13 +++ bootstrap.bat 2000/07/12 21:14:09 @@ -20,9 +20,9 @@ SET LOCALCLASSPATH=classes;src\main if exist lib\ant.jar erase lib\ant.jar -for %%i in (lib\*.jar) do call lcp.bat %%i -if exist %JAVA_HOME%\lib\tools.jar call lcp.bat %JAVA_HOME%\lib\tools.jar -if exist %JAVA_HOME%\lib\classes.zip call lcp.bat %JAVA_HOME%\lib\classes.zip +for %%i in (lib\*.jar) do call src\bin\lcp.bat %%i +if exist %JAVA_HOME%\lib\tools.jar call src\bin\lcp.bat %JAVA_HOME%\lib\tools.jar +if exist %JAVA_HOME%\lib\classes.zip call src\bin\lcp.bat %JAVA_HOME%\lib\classes.zip SET CLASSPATH=%CLASSPATH%;%LOCALCLASSPATH% echo JAVA_HOME=%JAVA_HOME%
