From: Gary V. Vaughan Date: Wed, 28 Nov 2001 00:42:30 +0000 (+0000) Subject: * libtoolize.in: The test for whether AC_PROG_LIBTOOL is defined X-Git-Tag: release-1-4-3~33 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=16aa0d7587b65085b2b3aabf351bc25ccd5f4f1b;p=thirdparty%2Flibtool.git * libtoolize.in: The test for whether AC_PROG_LIBTOOL is defined in aclocal.m4 had bitrotted slightly. Reported by Takahiko Kawasaki --- diff --git a/ChangeLog b/ChangeLog index 6d44b1d53..f393de3c5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-11-28 Gary V. Vaughan + + * libtoolize.in: The test for whether AC_PROG_LIBTOOL is defined + in aclocal.m4 had bitrotted slightly. + Reported by Takahiko Kawasaki + 2001-11-27 Donald D. Anderson * ltmain.in: Treat freebsd like openbsd, in that -lc/-lc_r should diff --git a/libtoolize.in b/libtoolize.in index 446e0970e..79f4a41e1 100644 --- a/libtoolize.in +++ b/libtoolize.in @@ -204,7 +204,7 @@ if test -z "$automake"; then updatemsg="add the contents of \`$libtool_m4' to \`aclocal.m4'" fi - if egrep '^AC_DEFUN\(A[MC]_PROG_LIBTOOL' aclocal.m4 >/dev/null 2>&1; then + if egrep '^AC_DEFUN\(\[A[MC]_PROG_LIBTOOL' aclocal.m4 >/dev/null 2>&1; then # Check the version number on libtool.m4 and the one used in aclocal.m4. instserial=`grep '^# serial ' $libtool_m4 | grep 'A[MC]_PROG_LIBTOOL' | sed -e 's/^# serial \([0-9][0-9]*\).*$/\1/; q'`