From: Gary V. Vaughan Date: Fri, 24 Sep 2004 12:51:24 +0000 (+0000) Subject: * m4/libtool.m4 (_LT_DECL_EGREP): Only the newest CVS autoconf X-Git-Tag: release-1-9d~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef199e55da96a65e6a8640d7861519a8d4ec9a58;p=thirdparty%2Flibtool.git * m4/libtool.m4 (_LT_DECL_EGREP): Only the newest CVS autoconf AC_SUBSTs for GREP. Do our own here too to cater for release autoconfen. --- diff --git a/ChangeLog b/ChangeLog index 14d4d1a99..e8c729d40 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2004-09-24 Gary V. Vaughan + * m4/libtool.m4 (_LT_DECL_EGREP): Only the newest CVS autoconf + AC_SUBSTs for GREP. Do our own here too to cater for release + autoconfen. + * m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER) [openbsd3.3]: Set need_version to yes or no depending on the os release. Reported by Dalibor Topic diff --git a/m4/libtool.m4 b/m4/libtool.m4 index 49e665daf..487f81414 100644 --- a/m4/libtool.m4 +++ b/m4/libtool.m4 @@ -5782,6 +5782,8 @@ test -z "$GREP" && GREP=grep _LT_DECL([], [GREP], [1], [A grep program that handles long line]) _LT_DECL([], [EGREP], [1], [An ERE matcher]) _LT_DECL([], [FGREP], [1], [A literal string matcher]) +dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too +AC_SUBST([GREP]) ])