]> sourceware.org Git - automake.git/commitdiff
* insthook.test: Don't require GNU grep. From John Pierce.
authorTom Tromey <tromey@redhat.com>
Thu, 11 Mar 1999 22:32:51 +0000 (22:32 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 11 Mar 1999 22:32:51 +0000 (22:32 +0000)
THANKS
tests/ChangeLog
tests/insthook.test

diff --git a/THANKS b/THANKS
index aa41f2cc73d967cd6a4bc4ab22bb73a1e23bbf06..51195278508b46cc4e9a7be9a1cda882d2d164d5 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -47,6 +47,7 @@ Jochen Kuepper                jochen@uni-duesseldorf.de
 Joel N. Weber II       nemo@koa.iolani.honolulu.hi.us
 Joerg-Martin Schwarz   jms@jms.prima.ruhr.de
 Johan Danielsson       joda@pdc.kth.se
+John Pierce            hawkfan@pyrotechnics.com
 John W. Coomes         jcoomes@eng.Sun.COM
 Josh MacDonald         jmacd@cs.berkeley.edu
 Joshua Cowan           jcowan@jcowan.reslife.okstate.edu
index 02557dde9866280fd21dee995137d073a5570f7a..f2f0de4f4d2549afce382f7fbc69c83e405bc941 100644 (file)
@@ -1,5 +1,7 @@
 1999-03-11  Tom Tromey  <tromey@cygnus.com>
 
+       * insthook.test: Don't require GNU grep.  From John Pierce.
+
        * lex3.test: New file.
        * Makefile.am (TESTS): Added lex3.test.
 
index e8d9b2a20579da3b0b88a127a34bb02d910fe378..82876bf1db817386f2c252d62f9e53d6f3c9f614 100755 (executable)
@@ -13,4 +13,5 @@ END
 $AUTOMAKE || exit 1
 
 test "`grep install-exec-hook Makefile.in | wc -l`" -gt 1 || exit 1
-grep -A2 '^install-exec-am:' Makefile.in | grep install-exec-hook
+lnum=`grep -n '^install-exec-am:' Makefile.in | awk -F: '{print $1}'`
+test x$lnum != x && tail +$lnum Makefile.in | head -3 | grep install-exec-hook
This page took 0.029984 seconds and 5 git commands to generate.