*** empty log message ***

This commit is contained in:
Gordon Matzigkeit 1997-04-14 01:43:24 +00:00 committed by Gordon Matzigkeit
parent c575f0907d
commit 8d598a095a
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Sun Apr 13 19:40:58 1997 Gordon Matzigkeit <gord@gnu.ai.mit.edu>
* ltmain.sh.in (mode): Use `egrep -e' when inferring the operation
mode.
Sat Apr 12 13:09:24 1997 Gordon Matzigkeit <gord@gnu.ai.mit.edu>
* ltconfig.in (linker): Some GNU ld's don't accept `--version',

View File

@ -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)

View File

@ -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