From: Akim Demaille Date: Tue, 30 Jan 2001 18:26:31 +0000 (+0000) Subject: * tests/base.at (AC_CACHE_CHECK): Typo and clean up. X-Git-Tag: autoconf-2.50~172 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ea25e950bddd2371a4ffc2229a29834b663c603;p=thirdparty%2Fautoconf.git * tests/base.at (AC_CACHE_CHECK): Typo and clean up. Check only --quiet. --- diff --git a/ChangeLog b/ChangeLog index ebfdee3b5..ab403f607 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2001-01-30 Akim Demaille - * 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 diff --git a/tests/base.at b/tests/base.at index bc4402f64..e339c4fd2 100644 --- a/tests/base.at +++ b/tests/base.at @@ -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