From: Alexandre Duret-Lutz Date: Fri, 22 Feb 2002 17:31:06 +0000 (+0000) Subject: * tests/make.test: Revert the grep logic to work around a bug X-Git-Tag: Release-1-6~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=39f9c77d13c532876e5cd47482de8b656a5e8858;p=thirdparty%2Fautomake.git * tests/make.test: Revert the grep logic to work around a bug in NetBSD sh (see NetBSD Problem Report #11542). Reported by Patrick Welche. --- diff --git a/ChangeLog b/ChangeLog index 9e92e16d4..f6924d01a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-02-22 Alexandre Duret-Lutz + + * tests/make.test: Revert the grep logic to work around a bug + in NetBSD sh (see NetBSD Problem Report #11542). + Reported by Patrick Welche. + 2002-02-20 Tim Van Holder * m4/lispdir.m4: Redirect /dev/null to stdin when running $EMACS diff --git a/THANKS b/THANKS index 047de321c..5339c43db 100644 --- a/THANKS +++ b/THANKS @@ -126,6 +126,7 @@ Nyul Laszlo nyul@sol.cc.u-szeged.hu OKUJI Yoshinori okuji@kuicr.kyoto-u.ac.jp Olivier Louchart-Fletcher olivier@zipworld.com.au Olly Betts olly@muscat.co.uk +Patrick Welche prlw1@newn.cam.ac.uk Paul Berrevoets paul@swi.com Paul D. Smith psmith@BayNetworks.COM Paul Eggert eggert@twinsun.com diff --git a/tests/make.test b/tests/make.test index 6cd372d97..310cb176e 100755 --- a/tests/make.test +++ b/tests/make.test @@ -27,18 +27,18 @@ export AUTOCONF export AUTOMAKE # Do the test twice -- once with make and once with make -w. -# This tests for a bug reported by Rainer Orth. +# This tests for a bug reported by Rainer Orth (see PR 175). save="$MAKE" for flag in '' -w; do MAKE="$save $flag" ./configure - fgrep 'am__include = #' Makefile && exit 1 + fgrep 'am__include = include' Makefile touch configure.in $MAKE $flag - fgrep 'am__include = #' Makefile && exit 1 + fgrep 'am__include = include' Makefile rm -f config.cache done