From 595060d80ee3f97057cb024895c213ecb6b0c22a Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Fri, 22 Feb 2002 17:31:03 +0000 Subject: [PATCH] * tests/make.test: Revert the grep logic to work around a bug in NetBSD sh (see NetBSD Problem Report #11542). Reported by Patrick Welche. --- ChangeLog | 6 ++++++ THANKS | 1 + tests/make.test | 6 +++--- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9e92e16d..f6924d01 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 047de321..5339c43d 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 6cd372d9..310cb176 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 -- 2.43.5