From: Jim Meyering Date: Wed, 16 Aug 2006 12:37:34 +0000 (+0000) Subject: 2006-08-16 Bruno Haible X-Git-Tag: v6.1~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1e77e830cced33cd623c48e1713fcd00ff6d2132;p=thirdparty%2Fcoreutils.git 2006-08-16 Bruno Haible * Makefile.maint (gzip_rsyncable): Throw away stderr output of "gzip --help". --- diff --git a/ChangeLog b/ChangeLog index 9203cbe562..95506510c6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-08-16 Bruno Haible + + * Makefile.maint (gzip_rsyncable): Throw away stderr output of + "gzip --help". + 2006-08-16 Andreas Schwab * tests/cp/acl: Don't use non-portable == operator for test. diff --git a/Makefile.maint b/Makefile.maint index a5df8427b9..1f3cd00bfa 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