From: Jim Meyering Date: Tue, 27 Nov 2007 18:50:27 +0000 (+0100) Subject: Don't block use of 'cat' or 'wc' in "make check". X-Git-Tag: v6.9.90~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9696161574e385795a74b4d6cb41b08dd0b4e4dd;p=thirdparty%2Fcoreutils.git Don't block use of 'cat' or 'wc' in "make check". * Makefile.maint (my-distcheck): Add "cat" and "wc" to the list of programs that we can't blacklist. --- diff --git a/ChangeLog b/ChangeLog index e04cd106bb..323cfe8762 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2007-11-27 Jim Meyering + Don't block use of 'cat' or 'wc' in "make check". + * Makefile.maint (my-distcheck): Add "cat" and "wc" to the list + of programs that we can't blacklist. + Fix md5sum+sha*sum on sparc: regenerate files with latest autoconf. * configure et al: Regenerate with very latest version of autoconf (v2.61a-312-gb524b0f), to fix md5sum and sha*sum miscompilation diff --git a/Makefile.maint b/Makefile.maint index 5671f292a1..c8d4fec8d5 100644 --- a/Makefile.maint +++ b/Makefile.maint @@ -598,7 +598,7 @@ my-distcheck: $(local-check) $(release_archive_dir)/$(prev-tgz) && for i in $(built_programs); do \ case $$i in \ rm|expr|basename|echo|sort|ls|tr);; \ - mv|dirname);; \ + cat|dirname|mv|wc);; \ *) ln $(bin)/loser $(bin)/$$i;; \ esac; \ done \