From: Stefano Lattarini Date: Sat, 26 Jun 2010 12:12:07 +0000 (+0200) Subject: Fix typo-related bug in test script silent5.test. X-Git-Tag: v1.11.1b~70^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=799d28297f59f47324fb7d72788c1a7a2f79173b;p=thirdparty%2Fautomake.git Fix typo-related bug in test script silent5.test. * tests/silent5.test: Use $EGREP, not $GREP (which is not even defined). Signed-off-by: Ralf Wildenhues --- diff --git a/ChangeLog b/ChangeLog index 4b0d3c482..80c172910 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-06-26 Stefano Lattarini + Fix typo-related bug in test script silent5.test. + * tests/silent5.test: Use $EGREP, not $GREP (which is not even + defined). + Tests: remove useless repetitions of `foreign' automake option. * tests/multlib.test (configure.in): Remove useless use of `foreign' option in AM_INIT_AUTOMAKE (the `--foreign' option is diff --git a/tests/silent5.test b/tests/silent5.test index 4a9c4c1b1..e29f48faf 100755 --- a/tests/silent5.test +++ b/tests/silent5.test @@ -80,7 +80,7 @@ do_and_check_verbose_build () grep ' -c ' stdout grep ' -o ' stdout - $GREP '(CC|CXX|FC|F77|LD) ' stdout && Exit 1 + $EGREP '(CC|CXX|FC|F77|LD) ' stdout && Exit 1 if $rebuild; then :; else grep 'ylwrap ' stdout