From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13482 invoked by alias); 28 Feb 2004 17:59:38 -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 13465 invoked from network); 28 Feb 2004 17:59:34 -0000 Received: from unknown (HELO localhost.redhat.com) (24.157.170.238) by sources.redhat.com with SMTP; 28 Feb 2004 17:59:34 -0000 Received: from gnu.org (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id E5AA72B92; Sat, 28 Feb 2004 12:55:52 -0500 (EST) Message-ID: <4040D628.50205@gnu.org> Date: Sat, 28 Feb 2004 17:59:00 -0000 From: Andrew Cagney Reply-To: binutils@sources.redhat.com User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.4.1) Gecko/20040217 MIME-Version: 1.0 To: binutils@sources.redhat.com Cc: gdb-patches@sources.redhat.com Subject: [rfa/binutils] distclean .cvsignore? Content-Type: multipart/mixed; boundary="------------060104070809020306090203" X-SW-Source: 2004-02/txt/msg00839.txt.bz2 This is a multi-part message in MIME format. --------------060104070809020306090203 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 389 [reply to set to binutils@] Hello, This patch modifies bfd/ and opcodes/ so that the .cvsignore files are removed when doing a distclean. The name is not dos friendly so shouldn't be included in GDB's distro. ok? Andrew PS: Note that bfd/Makefile.in most recent re-generate was not with a stock 000227 automake. Someone may want to investigate this - I side stepped the problem. --------------060104070809020306090203 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 2897 Index: bfd/ChangeLog 2004-02-28 Andrew Cagney * Makefile.am (DISTCLEANFILES): Add po/.cvsignore. * Makefile.in: Update. Index: opcodes/ChangeLog 2004-02-28 Andrew Cagney * Makefile.am (DISTCLEANFILES): Set to po/.cvsignore. * Makefile.in: Re-generate. Index: bfd/Makefile.am =================================================================== RCS file: /cvs/src/src/bfd/Makefile.am,v retrieving revision 1.127 diff -u -r1.127 Makefile.am --- bfd/Makefile.am 2 Dec 2003 08:14:33 -0000 1.127 +++ bfd/Makefile.am 28 Feb 2004 17:48:10 -0000 @@ -854,7 +854,7 @@ CLEANFILES = bfd.h dep.sed stmp-bfd-h DEP DEPA DEP1 DEP2 libbfd.a stamp-lib \ stmp-bin2-h stmp-lbfd-h stmp-lcoff-h -DISTCLEANFILES = $(BUILD_CFILES) $(BUILD_HFILES) +DISTCLEANFILES = $(BUILD_CFILES) $(BUILD_HFILES) po/.cvsignore # We want to rerun configure if config.bfd, configure.host or version.h change. config.status: $(srcdir)/configure $(srcdir)/config.bfd \ Index: bfd/Makefile.in =================================================================== RCS file: /cvs/src/src/bfd/Makefile.in,v retrieving revision 1.140 diff -u -r1.140 Makefile.in --- bfd/Makefile.in 2 Dec 2003 08:14:33 -0000 1.140 +++ bfd/Makefile.in 28 Feb 2004 17:48:11 -0000 @@ -779,7 +779,7 @@ stmp-bin2-h stmp-lbfd-h stmp-lcoff-h -DISTCLEANFILES = $(BUILD_CFILES) $(BUILD_HFILES) +DISTCLEANFILES = $(BUILD_CFILES) $(BUILD_HFILES) po/.cvsignore ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs CONFIG_HEADER = config.h Index: opcodes/Makefile.am =================================================================== RCS file: /cvs/src/src/opcodes/Makefile.am,v retrieving revision 1.73 diff -u -r1.73 Makefile.am --- opcodes/Makefile.am 7 Jan 2004 18:39:40 -0000 1.73 +++ opcodes/Makefile.am 28 Feb 2004 17:48:34 -0000 @@ -349,6 +349,7 @@ stamp-iq2000 stamp-xstormy16 \ libopcodes.a stamp-lib dep.sed DEP DEPA DEP1 DEP2 +DISTCLEANFILES = po/.cvsignore CGENDIR = @cgendir@ CPUDIR = $(CGENDIR)/cpu Index: opcodes/Makefile.in =================================================================== RCS file: /cvs/src/src/opcodes/Makefile.in,v retrieving revision 1.82 diff -u -r1.82 Makefile.in --- opcodes/Makefile.in 7 Jan 2004 18:39:40 -0000 1.82 +++ opcodes/Makefile.in 28 Feb 2004 17:48:34 -0000 @@ -417,6 +417,8 @@ libopcodes.a stamp-lib dep.sed DEP DEPA DEP1 DEP2 +DISTCLEANFILES = po/.cvsignore + CGENDIR = @cgendir@ CPUDIR = $(CGENDIR)/cpu CGEN = `if test -f ../guile/libguile/guile ; then echo ../guile/libguile/guile; else echo guile ; fi` @@ -774,6 +776,7 @@ distclean-generic: -rm -f Makefile $(CONFIG_CLEAN_FILES) -rm -f config.cache config.log stamp-h stamp-h[0-9]* + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: mostlyclean-am: mostlyclean-hdr mostlyclean-noinstLIBRARIES \ --------------060104070809020306090203--