From: Jim Meyering Date: Sun, 5 Oct 2008 17:47:18 +0000 (+0200) Subject: bootstrap: check for LT_INIT more portably still ;-) X-Git-Tag: v0.1~6885 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=e57dfa6b2dfe95f3f5e0747e8e8338b143de864d;p=gnulib.git bootstrap: check for LT_INIT more portably still ;-) * build-aux/bootstrap: Don't rely on \>, since it's not portable. Spotted by Bruno Haible. --- diff --git a/ChangeLog b/ChangeLog index 5345c11a9..51ce3f660 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-10-06 Jim Meyering + + 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 test-signbit: avoid tripping Irix cc bug on -0.0L diff --git a/build-aux/bootstrap b/build-aux/bootstrap index 1ad154f39..0d7668643 100755 --- a/build-aux/bootstrap +++ b/build-aux/bootstrap @@ -601,9 +601,9 @@ do # 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