changeset 30288:8c440ed07ae7

bootstrap: check for LT_INIT more portably still ;-) * build-aux/bootstrap: Don't rely on \>, since it's not portable. Spotted by Bruno Haible.
author Jim Meyering <meyering@redhat.com>
date Sun, 05 Oct 2008 19:47:18 +0200
parents e8e1180bdb59
children 9bf2338eb57f
files ChangeLog build-aux/bootstrap
diffstat 2 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Oct 06 06:23:12 2008 -0600
+++ b/ChangeLog	Sun Oct 05 19:47:18 2008 +0200
@@ -1,3 +1,9 @@
+2008-10-06  Jim Meyering  <meyering@redhat.com>
+
+	bootstrap: check for LT_INIT more portably still ;-)
+	* build-aux/bootstrap: Don't rely on \>, since it's not portable.
+	Spotted by Bruno Haible.
+
 2008-10-06  Eric Blake  <ebb9@byu.net>
 
 	test-signbit: avoid tripping Irix cc bug on -0.0L
--- a/build-aux/bootstrap	Mon Oct 06 06:23:12 2008 -0600
+++ b/build-aux/bootstrap	Sun Oct 05 19:47:18 2008 +0200
@@ -601,9 +601,9 @@
     # We'd like to use grep -E, to see if any of LT_INIT,
     # AC_PROG_LIBTOOL, AM_PROG_LIBTOOL is used in configure.ac,
     # but that's not portable enough (e.g., for Solaris).
-    grep '^[	 ]*A[CM]_PROG_LIBTOOL\>' configure.ac >/dev/null \
+    grep '^[	 ]*A[CM]_PROG_LIBTOOL' configure.ac >/dev/null \
       && use_libtool=1
-    grep '^[	 ]*LT_INIT\>' configure.ac >/dev/null \
+    grep '^[	 ]*LT_INIT' configure.ac >/dev/null \
       && use_libtool=1
     test $use_libtool = 0 \
       && continue