Sam, You say, bootstraps are not cleaning up, but there is certainly code in the bootstrap.bat to do that.
if "%OS%" == "Windows_NT" if exist %CLASSDIR%\nul rmdir/s/q %CLASSDIR% if not "%OS%" == "Windows_NT" if exist %CLASSDIR%\nul deltree/y %CLASSDIR% The equivalent code appears in bootstrap.sh as far as I can tell. If you decide to keep your change, the above code should go as it blows away the classes you just compiled :-) The only concern I have is that your change will cause the very first code run - i.e. this one "%JAVA%" %ANT_OPTS% org.apache.tools.ant.Main -emacs bootstrap will now be running from classes which potentially are being recompiled by the compiler. It is unlikely to be the case but that was the original intent of using a separate bootstrap classes area. Any ideas why the cleanup code was not working? Conor > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Tuesday, 23 October 2001 4:11 PM > To: [EMAIL PROTECTED] > Subject: cvs commit: jakarta-ant bootstrap.bat bootstrap.sh > > > rubys 01/10/22 23:10:50 > > Modified: . bootstrap.bat bootstrap.sh > Log: > Bootstraps are not cleaning up after themselves. >
