]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* tests/base.at (AC_CACHE_CHECK): Typo and clean up.
authorAkim Demaille <akim@epita.fr>
Tue, 30 Jan 2001 18:26:31 +0000 (18:26 +0000)
committerAkim Demaille <akim@epita.fr>
Tue, 30 Jan 2001 18:26:31 +0000 (18:26 +0000)
Check only --quiet.

ChangeLog
tests/base.at

index ebfdee3b5a80d8d29e445dcdb53a102f45ebea41..ab403f607016216e8057704f5f48305702f459b7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
 2001-01-30  Akim Demaille  <akim@epita.fr>
 
-       * tests/base.at (AC_CACHE_CHECK): Typo and clea nup.
+       * tests/base.at (AC_CACHE_CHECK): Typo and clean up.
+       Check only --quiet.
 
 2001-01-30  Paul Eggert  <eggert@twinsun.com>
 
index bc4402f647d26bb8e674b983caeffab0e7b0b000..e339c4fd209eb64b6bd850d520fb8f62b0867640 100644 (file)
@@ -206,12 +206,12 @@ AT_SETUP([AC_CACHE_CHECK])
 
 AT_DATA([configure.ac],
 [[AC_INIT
-AC_CACHE_CHECK([for nothing],[ac_nothing],[ac_nothing=found])
+AC_CACHE_CHECK([for nothing],
+               [ac_nothing],
+               [ac_nothing=found])
 ]])
 
 AT_CHECK_AUTOCONF
 AT_CHECK_CONFIGURE([-q])
-AT_CHECK_CONFIGURE([], 0, [checking for nothing... found
-])
 
 AT_CLEANUP