mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-01-12 14:06:37 +08:00
* ltmain.in: Do not exit when an unknown library name is passed
passed in, simply warn and continue since some compilers require -LANG:* like options to work. Reported by Adam C. Powell, IV <adam.powell@nist.gov>
This commit is contained in:
parent
71dc9a2ec9
commit
0d55a7031e
@ -1,3 +1,10 @@
|
||||
1999-05-17 Gary V. Vaughan <gary@oranda.demon.co.uk>
|
||||
|
||||
* ltmain.in: Do not exit when an unknown library name is passed
|
||||
passed in, simply warn and continue since some compilers require
|
||||
-LANG:* like options to work.
|
||||
Reported by Adam C. Powell, IV <adam.powell@nist.gov>
|
||||
|
||||
1999-05-17 Jiro Takabatake <jiro@din.or.jp>
|
||||
|
||||
* ltconfig.in: port to NEC UX/4800.
|
||||
|
10
ltmain.in
10
ltmain.in
@ -1630,8 +1630,9 @@ compiler."
|
||||
*)
|
||||
abs_ladir=`cd "$ladir" && pwd`
|
||||
if test -z "$abs_ladir"; then
|
||||
$echo "$modename: cannot determine absolute directory name of \`$ladir'" 1>&2
|
||||
exit 1
|
||||
$echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2
|
||||
$echo "$modename: passing it literally to the linker, although it might fail" 1>&2
|
||||
absdir="$dir"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
@ -2548,8 +2549,9 @@ EOF
|
||||
*)
|
||||
abs_ladir=`cd "$ladir" && pwd`
|
||||
if test -z "$abs_ladir"; then
|
||||
$echo "$modename: cannot determine absolute directory name of \`$ladir'" 1>&2
|
||||
exit 1
|
||||
$echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2
|
||||
$echo "$modename: passing it literally to the linker, although it might fail" 1>&2
|
||||
absdir="$dir"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
Loading…
Reference in New Issue
Block a user