From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30424 invoked by alias); 28 Feb 2004 21:54:34 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 30404 invoked from network); 28 Feb 2004 21:54:33 -0000 Received: from unknown (HELO localhost.redhat.com) (24.157.170.238) by sources.redhat.com with SMTP; 28 Feb 2004 21:54:33 -0000 Received: from gnu.org (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 43FFE2B98; Sat, 28 Feb 2004 16:54:26 -0500 (EST) Message-ID: <40410E12.9040304@gnu.org> Date: Sat, 28 Feb 2004 21:54:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.4.1) Gecko/20040217 MIME-Version: 1.0 To: Andreas Schwab Cc: binutils@sources.redhat.com, gdb-patches@sources.redhat.com, Ian Lance Taylor Subject: Re: [patch/rfc] Skip .cvsfiles in src-release; Was: [rfa/binutils] distclean .cvsignore? References: <4040D628.50205@gnu.org> <4040E14C.6090607@gnu.org> <4040F391.30401@gnu.org> In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2004-02/txt/msg00863.txt.bz2 > Andrew Cagney writes: > > >>> --- src-release 15 Jan 2004 23:24:29 -0000 1.9 >>> +++ src-release 28 Feb 2004 19:59:01 -0000 >>> @@ -208,11 +208,14 @@ >>> -rm -f $(PACKAGE)-$(VER) >>> ln -s proto-toplev $(PACKAGE)-$(VER) >>> >>> +CVS_NAMES= \( -name CVS -o -name '\.cvsignore' \) > > > This won't match .cvsignore (it's a glob pattern, not a regex). Actually, it did (guess its a GNU find feature). Anyway, committed minus that '\'. In testing this I noticed a few other CVS files that it wouldn't hurt to prune (but I'll follow that up after GDB's branched). Andrew