summaryrefslogtreecommitdiff
path: root/src-release
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-02-28 21:52:04 +0000
committerAndrew Cagney <cagney@redhat.com>2004-02-28 21:52:04 +0000
commit30e63babb40874e76305ea2f111c0215b3b9177f (patch)
treeb9849a9669c9cb9cfc9faf0a9845838581623651 /src-release
parente19e816bf67e9667bf7555e4cb148bfe46d114c9 (diff)
downloadbinutils-redhat-30e63babb40874e76305ea2f111c0215b3b9177f.tar.gz
2004-02-28 Andrew Cagney <cagney@redhat.com>
* src-release (CVS_NAMES): Define. (do-tar, do-tar): Prune $(CVS_NAMES).
Diffstat (limited to 'src-release')
-rw-r--r--src-release8
1 files changed, 6 insertions, 2 deletions
diff --git a/src-release b/src-release
index 403ce147c5..4fec631212 100644
--- a/src-release
+++ b/src-release
@@ -208,11 +208,14 @@ do-proto-toplev: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex
-rm -f $(PACKAGE)-$(VER)
ln -s proto-toplev $(PACKAGE)-$(VER)
+CVS_NAMES= \( -name CVS -o -name '.cvsignore' \)
+
.PHONY: do-tar
do-tar:
echo "==> Making $(PACKAGE)-$(VER).tar"
-rm -f $(PACKAGE)-$(VER).tar
- find $(PACKAGE)-$(VER) -follow -name CVS -prune -o -type f -print \
+ find $(PACKAGE)-$(VER) -follow $(CVS_NAMES) -prune \
+ -o -type f -print \
| tar cTfh - $(PACKAGE)-$(VER).tar
.PHONY: do-bz2
@@ -224,7 +227,8 @@ do-bz2:
.PHONY: do-md5sum
do-md5sum:
echo "==> Adding md5 checksum to top-level directory"
- cd proto-toplev && find * -follow -name CVS -prune -o -type f -print \
+ cd proto-toplev && find * -follow $(CVS_NAMES) -prune \
+ -o -type f -print \
| xargs $(MD5PROG) > ../md5.sum
mv md5.sum proto-toplev