summaryrefslogtreecommitdiff
path: root/Makefile.maint
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-03-03 23:25:05 +0000
committerJim Meyering <jim@meyering.net>2002-03-03 23:25:05 +0000
commit2020df67022fede640c7deecdf3883a3a49fb0f4 (patch)
tree72cdf7b6709a22c04c306538af79c66c3aefb3a8 /Makefile.maint
parentc4836a781140ea15e8ce41133cbd07402948f6dc (diff)
downloadcoreutils-2020df67022fede640c7deecdf3883a3a49fb0f4.tar.xz
(tgz-size): Also handle a suffix of `K', since
the sizes in the output of `du -h' now look like `29K'
Diffstat (limited to 'Makefile.maint')
-rw-r--r--Makefile.maint6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.maint b/Makefile.maint
index 46cdd24e2..d63dacbdb 100644
--- a/Makefile.maint
+++ b/Makefile.maint
@@ -209,9 +209,9 @@ 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/')
+tgz-size = $(shell du --human $(my_distdir).tar.gz|sed 's/\([MkK]\).*/ \1B/')
+bz2-size = $(shell du --human $(my_distdir).tar.bz2|sed 's/\([MkK]\).*/ \1B/')
+xd-size = $(shell du --human $(xd-delta)|sed 's/\([MkK]\).*/ \1B/')
rel-check:
tarz=/tmp/rel-check-tarz-$$$$; \