mirror of
git://git.sv.gnu.org/autoconf
synced 2025-02-17 14:01:27 +08:00
* 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:
parent
9ac77be964
commit
4b63001766
@ -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>
|
2002-11-05 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
* lib/autoconf/autoheader.m4 (_AH_TEMPLATE_OLD, _AH_VERBATIM_OLD):
|
* lib/autoconf/autoheader.m4 (_AH_TEMPLATE_OLD, _AH_VERBATIM_OLD):
|
||||||
|
@ -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
|
Stardent Vistra SVR4 @code{grep} lacks @option{-e}@dots{} Instead, use
|
||||||
extended regular expressions and alternation.
|
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}
|
@item @command{ln}
|
||||||
@c ---------------
|
@c ---------------
|
||||||
|
@ -687,8 +687,8 @@ AT_CHECK([test -f inner/innermost/config.hin])
|
|||||||
|
|
||||||
# Running the outer configure recursively should provide the innermost
|
# Running the outer configure recursively should provide the innermost
|
||||||
# help strings.
|
# help strings.
|
||||||
AT_CHECK([./configure --help=recursive | grep -w INNER], 0, [ignore])
|
AT_CHECK([./configure --help=recursive | grep " INNER "], 0, [ignore])
|
||||||
AT_CHECK([./configure --help=recursive | grep -w INNERMOST], 0, [ignore])
|
AT_CHECK([./configure --help=recursive | grep " INNERMOST "], 0, [ignore])
|
||||||
|
|
||||||
# Running the outer configure should trigger the inner.
|
# Running the outer configure should trigger the inner.
|
||||||
AT_CHECK_CONFIGURE([INNERMOST=tsomrenni])
|
AT_CHECK_CONFIGURE([INNERMOST=tsomrenni])
|
||||||
|
Loading…
Reference in New Issue
Block a user