* tests/make.test: Revert the grep logic to work around a bug
authorAlexandre Duret-Lutz <adl@gnu.org>
Fri, 22 Feb 2002 17:31:06 +0000 (17:31 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Fri, 22 Feb 2002 17:31:06 +0000 (17:31 +0000)
in NetBSD sh (see NetBSD Problem Report #11542).
Reported by Patrick Welche.

ChangeLog
THANKS
tests/make.test

index 9e92e16..f6924d0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-02-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
+
+       * 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  <tim.van.holder@pandora.be>
 
        * m4/lispdir.m4: Redirect /dev/null to stdin when running $EMACS
diff --git a/THANKS b/THANKS
index 047de32..5339c43 100644 (file)
--- 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
index 6cd372d..310cb17 100755 (executable)
@@ -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