+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):
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 ---------------
# 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])