changeset 10577:d17b6284d868

bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the obsolete AM_PROG_LIBTOOL. Spotted by Debarshi 'Rishi' Ray <debarshi.ray@gmail.com>.
author Jim Meyering <meyering@redhat.com>
date Sun, 05 Oct 2008 08:24:04 +0200
parents 27a1858c4c79
children d5357f5be58a
files ChangeLog build-aux/bootstrap
diffstat 2 files changed, 8 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-10-05  Jim Meyering  <meyering@redhat.com>
+
+	bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
+	* build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
+	obsolete AM_PROG_LIBTOOL.
+	Spotted by Debarshi 'Rishi' Ray <debarshi.ray@gmail.com>.
+
 2008-10-04  Bruno Haible  <bruno@clisp.org>
 
 	* modules/dup2 (License): Change to LGPLv2+.
--- a/build-aux/bootstrap
+++ b/build-aux/bootstrap
@@ -597,7 +597,7 @@
   'automake --add-missing --copy --force-missing';
 do
   if test "$command" = libtool; then
-    grep '^[	 ]*AM_PROG_LIBTOOL\>' configure.ac >/dev/null ||
+    grep '^[	 ]*A[CM]_PROG_LIBTOOL\>' configure.ac >/dev/null ||
       continue
     command='libtoolize -c -f'
   fi