]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* tests/foreign.at (libtool): Fix the `libtoolize --version' decoding.
authorAkim Demaille <akim@epita.fr>
Mon, 25 Jun 2001 11:57:14 +0000 (11:57 +0000)
committerAkim Demaille <akim@epita.fr>
Mon, 25 Jun 2001 11:57:14 +0000 (11:57 +0000)
ChangeLog
tests/foreign.at

index a7306277d2d99448a0340ca38ece5614cf754d81..2ffbbe3a71f4ab69806a5fef10fffd0d2ca08e38 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-06-25  Akim Demaille  <akim@epita.fr>
+
+       * tests/foreign.at (libtool): Fix the `libtoolize --version' decoding.
+
 2001-06-25  Akim Demaille  <akim@epita.fr>
 
        * autoscan.in (%macro): Now maps from word to list of macros.
@@ -10,7 +14,6 @@
        * acheaders: Normalize.
        * acfunctions: Likewise.
 
-       
 2001-06-25  Akim Demaille  <akim@epita.fr>
 
        * aclang.m4 (_AC_LANG_COMPILER_GNU): If GNU, dump the compiler
@@ -28,7 +31,7 @@
        * autoconf.in (Task traces): Separate the error messages from the
        traces to improve robustness.
 
-       
+
 2001-06-23  Akim Demaille  <akim@epita.fr>
 
        * tests/torture.at (AC_ARG_VAR): Make it a single test instead of
index 335946ac2e6e265cdb61cd7dd65d3d8669df738d..b618af9203a927fa73e5a679406a54b1fe4747d1 100644 (file)
@@ -15,9 +15,9 @@ AT_CHECK([libtoolize --version || exit 77],
 AT_CHECK([[
 case `libtoolize --version |
       sed -n '/^.* \([0-9][0-9.a-z]*\)$/{s//\1/;p;q;}'` in
-  *" "0.*          ) exit 77;;
-  *" "1.[012]*     ) exit 77;;
-  *" "1.3.[01234]* ) exit 77;;
+  0.*          ) exit 77;;
+  1.[012]*     ) exit 77;;
+  1.3.[01234]* ) exit 77;;
 esac]],
          ignore, ignore, ignore)