From a9cd64a1bec73e57f0a241f71c0c1a4757a2e06e Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Mon, 25 Jun 2001 11:57:14 +0000 Subject: [PATCH] * tests/foreign.at (libtool): Fix the `libtoolize --version' decoding. --- ChangeLog | 7 +++++-- tests/foreign.at | 6 +++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index a7306277..2ffbbe3a 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 335946ac..b618af92 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)