aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2000-05-16 00:09:00 +0000
committerAndrew Cagney <cagney@redhat.com>2000-05-16 00:09:00 +0000
commit82b43a09071ee4c574c542e7d89f13c305952176 (patch)
tree6504adf0b8a88d2ff1482ca3e2337fd47eb0f597
parentb5a2362790abfe9b855c65e2bcd5df65b87a6a19 (diff)
downloadgdb-82b43a09071ee4c574c542e7d89f13c305952176.zip
gdb-82b43a09071ee4c574c542e7d89f13c305952176.tar.gz
gdb-82b43a09071ee4c574c542e7d89f13c305952176.tar.bz2
Skip CVS directories when creating tar ball.
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.in7
2 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 93733c2..bc4a69e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue May 16 10:06:21 2000 Andrew Cagney <cagney@b1.cygnus.com>
+
+ Thu Apr 27 11:01:48 2000 Andrew Cagney <cagney@b1.cygnus.com>:
+ * Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories.
+
Tue May 16 09:57:35 2000 Andrew Cagney <cagney@b1.cygnus.com>
Wed Apr 26 17:03:53 2000 Andrew Cagney <cagney@b1.cygnus.com>:
diff --git a/Makefile.in b/Makefile.in
index 038022c..8e26f2d 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