Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 56947 invoked from network); 7 Oct 2009 21:37:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 7 Oct 2009 21:37:57 -0000 Received: (qmail 8452 invoked by uid 500); 7 Oct 2009 21:37:57 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 8406 invoked by uid 500); 7 Oct 2009 21:37:56 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 8397 invoked by uid 99); 7 Oct 2009 21:37:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Oct 2009 21:37:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Oct 2009 21:37:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1538E23888E4; Wed, 7 Oct 2009 21:37:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r822927 - /harmony/enhanced/classlib/trunk/depends/build/rules.mak Date: Wed, 07 Oct 2009 21:37:33 -0000 To: commits@harmony.apache.org From: hindessm@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091007213733.1538E23888E4@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: hindessm Date: Wed Oct 7 21:37:32 2009 New Revision: 822927 URL: http://svn.apache.org/viewvc?rev=822927&view=rev Log: Make windows clean target work again. Modified: harmony/enhanced/classlib/trunk/depends/build/rules.mak Modified: harmony/enhanced/classlib/trunk/depends/build/rules.mak URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/depends/build/rules.mak?rev=822927&r1=822926&r2=822927&view=diff ============================================================================== --- harmony/enhanced/classlib/trunk/depends/build/rules.mak (original) +++ harmony/enhanced/classlib/trunk/depends/build/rules.mak Wed Oct 7 21:37:32 2009 @@ -75,11 +75,16 @@ !endif clean: - -del $(BUILDFILES) *.res *.pdb \ - $(LIBNAME) $(LIBNAME:.lib=.exp) \ - $(LIBNAME:.lib=.map) \ - $(LIBNAME:.lib=.manifest) \ - $(DLLNAME) $(DBGPATH)$(LIBBASE).pdb \ - $(EXENAME) $(DBGPATH)$(EXEBASE).pdb \ - $(LIBPATH)$(EXEBASE).manifest \ - $(CLEANFILES) >nul 2>&1 + -del $(BUILDFILES) >nul 2>&1 + -del *.res >nul 2>&1 + -del *.pdb >nul 2>&1 + -del $(LIBNAME) >nul 2>&1 + -del $(LIBNAME:.lib=.exp) >nul 2>&1 + -del $(LIBNAME:.lib=.map) >nul 2>&1 + -del $(LIBNAME:.lib=.manifest) >nul 2>&1 + -del $(DLLNAME) >nul 2>&1 + -del $(DBGPATH)$(LIBBASE).pdb >nul 2>&1 + -del $(EXENAME) >nul 2>&1 + -del $(DBGPATH)$(EXEBASE).pdb >nul 2>&1 + -del $(LIBPATH)$(EXEBASE).manifest >nul 2>&1 + -del $(CLEANFILES) >nul 2>&1