]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* tests/torture.at (Configuring subdirectories): Require aclocal
authorAkim Demaille <akim@epita.fr>
Fri, 28 Mar 2003 17:10:27 +0000 (17:10 +0000)
committerAkim Demaille <akim@epita.fr>
Fri, 28 Mar 2003 17:10:27 +0000 (17:10 +0000)
1.4, otherwise the test fails, as it does support configure.ac.
This fixes the "test 40 failed" bug reports.

ChangeLog
tests/torture.at

index b6f96ede9ef72d531de06d0ad7540bf8f0167ad7..23e201b64e4495ac75e50f567e76e096861b7680 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-03-28  Akim Demaille  <akim@epita.fr>
+
+       * tests/torture.at (Configuring subdirectories): Require aclocal
+       1.4, otherwise the test fails, as it does support configure.ac.
+       This fixes the "test 40 failed" bug reports.
+
 2003-03-28  Akim Demaille  <akim@epita.fr>
 
        * doc/autoconf.texi (C Compiler): `#line' portability.
index cbb306571ec95a35df39dac2e03acb41892cc138..b29c08820a9e16be070d21c7a61a8da30ca4be45 100644 (file)
@@ -1,6 +1,6 @@
 #                                                      -*- Autotest -*-
 
-# Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
+# Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -559,7 +559,9 @@ AT_SETUP([Configuring subdirectories])
 AT_KEYWORDS(autoreconf)
 
 # We use aclocal (via autoreconf).
-AT_CHECK([aclocal --version || exit 77], [], [ignore], [ignore])
+AT_CHECK([aclocal --version || exit 77], [], [stdout], [ignore])
+# It should understand configure.ac.
+AT_CHECK([grep 1.4 stdout && exit 77], [1], [ignore])
 
 # The contents of `inner/', and `inner/innermost/'.
 AS_MKDIR_P([inner/innermost])