From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12488 invoked by alias); 16 Feb 2010 13:25:13 -0000 Received: (qmail 12459 invoked by uid 22791); 16 Feb 2010 13:25:12 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00,SPF_PASS X-Spam-Check-By: sourceware.org Received: from fencepost.gnu.org (HELO fencepost.gnu.org) (140.186.70.10) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 16 Feb 2010 13:25:08 +0000 Received: from ams by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1NhNQI-0002VY-To; Tue, 16 Feb 2010 08:25:06 -0500 From: "Alfred M. Szmidt" To: Nick Clifton CC: schwab@redhat.com, binutils@sourceware.org, gdb-patches@sourceware.org, gcc-patches@gcc.gnu.org In-reply-to: <4B7A9233.5040008@redhat.com> (message from Nick Clifton on Tue, 16 Feb 2010 12:40:19 +0000) Subject: Re: Remove config.cache files when reconfiguring at top level Reply-to: ams@gnu.org References: <4B796E1D.7000104@redhat.com> <4B7A6E32.6070307__49868.1737961762$1266314832$gmane$org@redhat.com> <4B7A7B9E.4050606@redhat.com> <4B7A9233.5040008@redhat.com> Message-Id: Date: Tue, 16 Feb 2010 13:25:00 -0000 X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2010-02/txt/msg00386.txt.bz2 *************** local-distclean: *** 771,776 **** --- 771,777 ---- -rmdir texinfo/doc texinfo/info texinfo/intl texinfo/lib 2>/dev/null -rmdir texinfo/makeinfo texinfo/po texinfo/util 2>/dev/null -rmdir fastjar gcc libiberty texinfo zlib 2>/dev/null + -find . -name config.cache -exec rm -f {} \; 2>/dev/null I'd use -delete instead of `rm -f {} \;'. But I think this is OK too. local-maintainer-clean: @echo "This command is intended for maintainers to use;"