* tests/torture.at (Configuring subdirectories): Don't use grep

-w.
* doc/autoconf.texi (Limitations of Usual Tools): Grep -w.
Reported by Ezra Peisach.
This commit is contained in:
Akim Demaille 2002-11-06 10:29:21 +00:00
parent 9ac77be964
commit 4b63001766
3 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2002-11-06 Akim Demaille <akim@epita.fr>
* tests/torture.at (Configuring subdirectories): Don't use grep
-w.
* doc/autoconf.texi (Limitations of Usual Tools): Grep -w.
Reported by Ezra Peisach.
2002-11-05 Akim Demaille <akim@epita.fr>
* lib/autoconf/autoheader.m4 (_AH_TEMPLATE_OLD, _AH_VERBATIM_OLD):

View File

@ -10387,6 +10387,9 @@ honor the last pattern (e.g., @sc{irix} 6.5 and Solaris 2.5.1). Anyway,
Stardent Vistra SVR4 @code{grep} lacks @option{-e}@dots{} Instead, use
extended regular expressions and alternation.
Don't rely on @option{-w}, as Irix 6.5.16m's @command{grep} does not
support it.
@item @command{ln}
@c ---------------

View File

@ -687,8 +687,8 @@ AT_CHECK([test -f inner/innermost/config.hin])
# Running the outer configure recursively should provide the innermost
# help strings.
AT_CHECK([./configure --help=recursive | grep -w INNER], 0, [ignore])
AT_CHECK([./configure --help=recursive | grep -w INNERMOST], 0, [ignore])
AT_CHECK([./configure --help=recursive | grep " INNER "], 0, [ignore])
AT_CHECK([./configure --help=recursive | grep " INNERMOST "], 0, [ignore])
# Running the outer configure should trigger the inner.
AT_CHECK_CONFIGURE([INNERMOST=tsomrenni])