]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* ltmain.in (dependency_libs): There is no reason to infer that
authorGary V. Vaughan <gary@gnu.org>
Fri, 19 Mar 1999 10:18:39 +0000 (10:18 +0000)
committerGary V. Vaughan <gary@gnu.org>
Fri, 19 Mar 1999 10:18:39 +0000 (10:18 +0000)
the pseudo library is invalid if dependency_libs='' at
install-time, or else libltdl/libltdl.la is invalid!!

ChangeLog
ltmain.in

index f39b2f0a4c64201e20519311795a1df7d9c165b6..a634d5303e3feb136204d922d3f9d41cd565e61d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+1999-03-19  Gary V. Vaughan  <gvaughan@oranda.demon.co.uk>
+
+       * 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  <tanner@gmx.de>
 
        * merged my inter-library dependencies code from the ILD branch:
index c009b9eda4dc01e4f9b805c2136081383c8cfbce..74156c68c443e8577dbafde39b48c4c4aa53eb18 100644 (file)
--- 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