From: Akim Demaille Date: Mon, 25 Jun 2001 11:57:14 +0000 (+0000) Subject: * tests/foreign.at (libtool): Fix the `libtoolize --version' decoding. X-Git-Tag: AUTOCONF-2.50a~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9cd64a1bec73e57f0a241f71c0c1a4757a2e06e;p=thirdparty%2Fautoconf.git * tests/foreign.at (libtool): Fix the `libtoolize --version' decoding. --- diff --git a/ChangeLog b/ChangeLog index a7306277d..2ffbbe3a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-06-25 Akim Demaille + + * tests/foreign.at (libtool): Fix the `libtoolize --version' decoding. + 2001-06-25 Akim Demaille * autoscan.in (%macro): Now maps from word to list of macros. @@ -10,7 +14,6 @@ * acheaders: Normalize. * acfunctions: Likewise. - 2001-06-25 Akim Demaille * 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 * tests/torture.at (AC_ARG_VAR): Make it a single test instead of diff --git a/tests/foreign.at b/tests/foreign.at index 335946ac2..b618af920 100644 --- a/tests/foreign.at +++ b/tests/foreign.at @@ -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)