From: Gary V. Vaughan Date: Fri, 19 Mar 1999 10:18:39 +0000 (+0000) Subject: * ltmain.in (dependency_libs): There is no reason to infer that X-Git-Tag: release-1-3b~196 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e44bc21c59e285e57610dc190aa1c6d4782a4639;p=thirdparty%2Flibtool.git * ltmain.in (dependency_libs): There is no reason to infer that the pseudo library is invalid if dependency_libs='' at install-time, or else libltdl/libltdl.la is invalid!! --- diff --git a/ChangeLog b/ChangeLog index f39b2f0a4..a634d5303 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1999-03-19 Gary V. Vaughan + + * ltmain.in (dependency_libs): There is no reason to infer that + the pseudo library is invalid if dependency_libs='' at + install-time, or else libltdl/libltdl.la is invalid!! + 1999-03-18 Thomas Tanner * merged my inter-library dependencies code from the ILD branch: diff --git a/ltmain.in b/ltmain.in index c009b9eda..74156c68c 100644 --- a/ltmain.in +++ b/ltmain.in @@ -3683,7 +3683,6 @@ relink_command=\"$relink_command\"" fi relink_command= - dependency_libs= # If there is no directory component, then add one. case "$file" in */* | *\\*) . $file ;; @@ -3691,7 +3690,7 @@ relink_command=\"$relink_command\"" esac # Check the variables that should have been set. - if test -z "$dependency_libs" || test -z "$relink_command"; then + if test -z "$relink_command"; then $echo "$modename: invalid libtool pseudo library \`$file'" 1>&2 exit 1 fi