summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2006-08-16 12:37:34 +0000
committerJim Meyering <jim@meyering.net>2006-08-16 12:37:34 +0000
commit1e77e830cced33cd623c48e1713fcd00ff6d2132 (patch)
treef6dafa10d0e22cb58d779229670d9c18958de1d4
parenta8914bd9663959b81caa356ac3fa607c546e3ab9 (diff)
downloadcoreutils-1e77e830cced33cd623c48e1713fcd00ff6d2132.tar.xz
2006-08-16 Bruno Haible <bruno@clisp.org>
* Makefile.maint (gzip_rsyncable): Throw away stderr output of "gzip --help".
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.maint2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9203cbe56..95506510c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-08-16 Bruno Haible <bruno@clisp.org>
+
+ * Makefile.maint (gzip_rsyncable): Throw away stderr output of
+ "gzip --help".
+
2006-08-16 Andreas Schwab <schwab@suse.de>
* tests/cp/acl: Don't use non-portable == operator for test.
diff --git a/Makefile.maint b/Makefile.maint
index a5df8427b..1f3cd00bf 100644
--- a/Makefile.maint
+++ b/Makefile.maint
@@ -26,7 +26,7 @@ ME := Makefile.maint
# Do not save the original name or timestamp in the .tar.gz file.
# Use --rsyncable if available.
gzip_rsyncable := \
- $(shell gzip --help|grep rsyncable >/dev/null && echo --rsyncable)
+ $(shell gzip --help 2>/dev/null|grep rsyncable >/dev/null && echo --rsyncable)
GZIP_ENV = '--no-name --best $(gzip_rsyncable)'
CVS = cvs