]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* tests/foreign.at (Libtool): Don't skip 1.3.5.
authorAkim Demaille <akim@epita.fr>
Tue, 20 Mar 2001 14:15:59 +0000 (14:15 +0000)
committerAkim Demaille <akim@epita.fr>
Tue, 20 Mar 2001 14:15:59 +0000 (14:15 +0000)
Invoke AC_CANONICAL_SYSTEM ---for some reason AC_CANONICAL_HOST is
not enough for 1.3.5.
From Lars J. Aas.

ChangeLog
tests/foreign.at

index b7092e387d3b77a1143441b37f368035c83ce8c0..14094767414955149d35592bbf5978c2cb01feaa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-03-20  Akim Demaille  <akim@epita.fr>
+
+       * tests/foreign.at (Libtool): Don't skip 1.3.5.
+       Invoke AC_CANONICAL_SYSTEM ---for some reason AC_CANONICAL_HOST is
+       not enough for 1.3.5.
+       From Lars J. Aas.
+
 2001-03-20  Akim Demaille  <akim@epita.fr>
 
        * tests/atgeneral.m4: s/Testing suite/Test suite/g.
index 0bcaba00dec11fb2a4911b5717464d34f069d703..b509891ce0cb9070f69c50ff546f5cf2374d7142 100644 (file)
@@ -11,8 +11,8 @@ AT_SETUP([[Libtool]])
 # Skip this test if there is no libtoolize.
 AT_CHECK([libtoolize --version || exit 77],
          ignore, ignore, ignore)
-# CVS Autoconf does not work with Libtool 1.3.5.
-AT_CHECK([[libtoolize --version | egrep '1\.3(\.[0-5])?$' && exit 77]],
+# CVS Autoconf probably does not work with too old Libtools.
+AT_CHECK([[libtoolize --version | egrep '1\.3(\.[0-4])?$' && exit 77]],
          ignore, ignore, ignore)
 
 # FIXME: Once Libtool `configure.ac' aware, change this.
@@ -36,6 +36,7 @@ cp `cat stdout` configure.in
 cat >>configure.in <<_EOF
 AC_INIT
 AC_CONFIG_AUX_DIR(.)
+AC_CANONICAL_SYSTEM
 AC_PROG_LIBTOOL
 _EOF