mirror of
git://git.sv.gnu.org/autoconf
synced 2025-02-05 11:10:57 +08:00
* doc/autoconf.texi (Caching Results): Fix the examples to use a
recommended quoting style and discard unwanted output.
This commit is contained in:
parent
2e38fe93be
commit
bb44ff85bc
@ -1,3 +1,8 @@
|
||||
2006-03-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
||||
* doc/autoconf.texi (Caching Results): Fix the examples to use a
|
||||
recommended quoting style and discard unwanted output.
|
||||
|
||||
2006-03-05 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
* lib/autotest/general.m4 (_AT_NORMALIZE_TEST_GROUP_NUMBER): New macro.
|
||||
|
@ -7585,8 +7585,8 @@ instance, the following macro is broken:
|
||||
AC_DEFUN([AC_SHELL_TRUE],
|
||||
[AC_CACHE_CHECK([whether true(1) works], [ac_cv_shell_true_works],
|
||||
[ac_cv_shell_true_works=no
|
||||
true && ac_cv_shell_true_works=yes
|
||||
if test $ac_cv_shell_true_works = yes; then
|
||||
(true) 2>/dev/null && ac_cv_shell_true_works=yes
|
||||
if test "$ac_cv_shell_true_works" = yes; then
|
||||
AC_DEFINE([TRUE_WORKS], [1],
|
||||
[Define if `true(1)' works properly.])
|
||||
fi])
|
||||
@ -7604,8 +7604,8 @@ is:
|
||||
AC_DEFUN([AC_SHELL_TRUE],
|
||||
[AC_CACHE_CHECK([whether true(1) works], [ac_cv_shell_true_works],
|
||||
[ac_cv_shell_true_works=no
|
||||
true && ac_cv_shell_true_works=yes])
|
||||
if test $ac_cv_shell_true_works = yes; then
|
||||
(true) 2>/dev/null && ac_cv_shell_true_works=yes])
|
||||
if test "$ac_cv_shell_true_works" = yes; then
|
||||
AC_DEFINE([TRUE_WORKS], [1],
|
||||
[Define if `true(1)' works properly.])
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user