From: Andrew Cagney Date: Thu, 27 Apr 2000 01:10:29 +0000 (+0000) Subject: Do not include CVS files in the archive. X-Git-Tag: gdb_4_95_0-2000-04-27-snapshot~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=642f6e8e34f50f87357e28ccc89a79a35a5c4ae0;p=thirdparty%2Fbinutils-gdb.git Do not include CVS files in the archive. --- diff --git a/ChangeLog b/ChangeLog index 10c4893000a..a7209ae93a9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Apr 27 11:01:48 2000 Andrew Cagney + + * Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories when + building file lists. + Wed Apr 26 17:03:53 2000 Andrew Cagney * Makefile.in (do-djunpack): New target. Update djunpack.bat with diff --git a/Makefile.in b/Makefile.in index 038022c09e5..8e26f2d3248 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1793,13 +1793,16 @@ do-proto-toplev: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex .PHONY: do-tar-bz2 do-tar-bz2: echo "==> Making $(PACKAGE)-$(VER).tar.bz2" - tar cfh $(PACKAGE)-$(VER).tar $(PACKAGE)-$(VER) + -rm -f $(PACKAGE)-$(VER).tar.bz2 + find $(PACKAGE)-$(VER) -follow -name CVS -prune -o -type f -print \ + | tar cTfh - $(PACKAGE)-$(VER).tar $(BZIPPROG) -v -9 $(PACKAGE)-$(VER).tar .PHONY: do-md5sum do-md5sum: echo "==> Adding md5 checksum to top-level directory" - ( cd proto-toplev && find * -follow -type f -print | xargs $(MD5PROG) ) > md5.sum + cd proto-toplev && find * -follow -name CVS -prune -o -type f -print \ + | xargs $(MD5PROG) > ../md5.sum mv md5.sum proto-toplev .PHONY: do-djunpack