From: Alexandre Oliva Date: Fri, 2 Apr 1999 13:41:53 +0000 (+0000) Subject: * ltmain.in (-L*): do not abort just because a directory specified X-Git-Tag: release-1-3b~159 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a517bc7a9fc822798ef670448d11878576502178;p=thirdparty%2Flibtool.git * ltmain.in (-L*): do not abort just because a directory specified with -L does not exist; just warn and discard it --- diff --git a/ChangeLog b/ChangeLog index 7cc12eb52..78084b9be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1999-04-02 Alexandre Oliva + * ltmain.in (-L*): do not abort just because a directory specified + with -L does not exist; just warn and discard it + * depdemo/l1/Makefile.am (AUTOMAKE_OPTIONS): no-dependencies * depdemo/l2/Makefile.am (AUTOMAKE_OPTIONS): ditto * depdemo/l3/Makefile.am (AUTOMAKE_OPTIONS): ditto diff --git a/ltmain.in b/ltmain.in index 6a71a32dd..f3c2d3eed 100644 --- a/ltmain.in +++ b/ltmain.in @@ -997,8 +997,8 @@ compiler." dir=`$echo "X$arg" | $Xsed -e 's/^-L//'` if test -d "$dir"; then : else - $echo "$modename: directory \`$dir' does not exist" 1>&2 - exit 1 + $echo "$modename: directory \`$dir' does not exist, dropping it" 1>&2 + continue fi # We need an absolute path. case "$dir" in