From: Gordon Matzigkeit Date: Mon, 14 Apr 1997 01:43:24 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release-1-0a~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d598a095ac7de95de37846320b420b93bf3027e;p=thirdparty%2Flibtool.git *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index a1a9a2688..4f68ebb8b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sun Apr 13 19:40:58 1997 Gordon Matzigkeit + + * ltmain.sh.in (mode): Use `egrep -e' when inferring the operation + mode. + Sat Apr 12 13:09:24 1997 Gordon Matzigkeit * ltconfig.in (linker): Some GNU ld's don't accept `--version', diff --git a/configure.in b/configure.in index ee12fde78..8b1dce9c3 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl Process this file with autoconf to create configure. AC_INIT(ltmain.sh.in) -AM_INIT_AUTOMAKE(libtool,0.9e) +AM_INIT_AUTOMAKE(libtool,0.9f) pkgdatadir='${datadir}/libtool' AC_SUBST(pkgdatadir) diff --git a/ltmain.sh.in b/ltmain.sh.in index 73de061be..f4111850b 100644 --- a/ltmain.sh.in +++ b/ltmain.sh.in @@ -143,7 +143,7 @@ if test -z "$show_help"; then if test "$mode" = NONE; then case "$nonopt" in *cc) - if echo " $@ " | egrep "[ ]-c[ ]" > /dev/null 2>&1; then + if echo " $@ " | egrep -e "[ ]-c[ ]" > /dev/null 2>&1; then mode=compile else mode=link