Return-Path: Delivered-To: apmail-jakarta-ant-dev-archive@jakarta.apache.org Received: (qmail 91657 invoked by uid 500); 23 Oct 2001 06:44:06 -0000 Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk Reply-To: ant-dev@jakarta.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 91619 invoked from network); 23 Oct 2001 06:44:01 -0000 From: "Conor MacNeill" To: Subject: RE: cvs commit: jakarta-ant bootstrap.bat bootstrap.sh Date: Tue, 23 Oct 2001 16:43:57 +1000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 In-Reply-To: <20011023061050.98815.qmail@icarus.apache.org> X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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: rubys@apache.org [mailto:rubys@apache.org] > Sent: Tuesday, 23 October 2001 4:11 PM > To: jakarta-ant-cvs@apache.org > 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. >