diff options
author | Jim Meyering <jim@meyering.net> | 2001-11-24 10:00:30 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-11-24 10:00:30 +0000 |
commit | 8fade926f85bbd4a803949f093e1e0c578d1ca58 (patch) | |
tree | 834e53c871d8f34f0e1f92af2b46b2f5128cb970 | |
parent | 7fa1528c0f99cdc45bb687abea9d5084e0fc8e6c (diff) | |
download | coreutils-8fade926f85bbd4a803949f093e1e0c578d1ca58.tar.xz |
Include signatures for the xdelta file, too.
-rw-r--r-- | Makefile.maint | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.maint b/Makefile.maint index fceb479f3..f36605831 100644 --- a/Makefile.maint +++ b/Makefile.maint @@ -187,6 +187,8 @@ tgz-md5 = $(shell md5sum < $(my_distdir).tar.gz|sed 's/ -//') tgz-sha1 = $(shell sha1sum < $(my_distdir).tar.gz|sed 's/ -//') bz2-md5 = $(shell md5sum < $(my_distdir).tar.bz2|sed 's/ -//') bz2-sha1 = $(shell sha1sum < $(my_distdir).tar.bz2|sed 's/ -//') +xdelta-md5 = $(shell md5sum < $(xd-delta)|sed 's/ -//') +xdelta-sha1 = $(shell sha1sum < $(xd-delta)|sed 's/ -//') tgz-size = $(shell du --human $(my_distdir).tar.gz|sed 's/\([Mk]\).*/ \1B/') bz2-size = $(shell du --human $(my_distdir).tar.bz2|sed 's/\([Mk]\).*/ \1B/') xd-size = $(shell du --human $(xd-delta)|sed 's/\([Mk]\).*/ \1B/') @@ -228,12 +230,14 @@ announcement: NEWS ChangeLog $(rel-files) echo " $$url/$(xd-delta) ($(xd-size))"; \ done; \ echo; \ - echo "Here are the MD5 and SHA1 signatures for the compressed tar files:"; \ + echo "Here are the MD5 and SHA1 signatures:"; \ echo; \ echo "$(tgz-md5) $(my_distdir).tar.gz"; \ echo "$(bz2-md5) $(my_distdir).tar.bz2"; \ + echo "$(xdelta-md5) $(xd-delta)"; \ echo "$(tgz-sha1) $(my_distdir).tar.gz"; \ echo "$(bz2-sha1) $(my_distdir).tar.bz2"; \ + echo "$(xdelta-sha1) $(xd-delta)"; \ echo; \ echo NEWS:; \ sed -n "/$(THIS_VERSION_REGEXP)[]:]/,/$(PREV_VERSION_REGEXP)[]:]/p" NEWS \ |