]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* ltmain.in (dlpredeps): removed, reverting 1999-01-17's change
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Wed, 20 Jan 1999 08:39:52 +0000 (08:39 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Wed, 20 Jan 1999 08:39:52 +0000 (08:39 +0000)
ChangeLog
ltmain.in

index 47c169da38122e2a60f2c575677cc8e3877dfc46..df9cbf915a7486d77a0f73c62e230bd721e40b51 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+1999-01-20  Alexandre Oliva  <oliva@dcc.unicamp.br>
+
+       * ltmain.in (dlpredeps): removed, reverting 1999-01-17's change
+
 1999-01-19  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
        * libltdl/Makefile.am (Makefile): depend on libtool
index 295a68a12938108c1681e81fc6979289aa066249..ab1cf75272e55eabcbf5c78bb77d93333b15315f 100644 (file)
--- a/ltmain.in
+++ b/ltmain.in
@@ -616,7 +616,6 @@ compiler."
     avoid_version=no
     dlfiles=
     dlprefiles=
-    dlpredeps=
     export_dynamic=no
     export_symbols=
     generated=
@@ -976,7 +975,8 @@ compiler."
          else
            # We should not create a dependency on this library, but we
            # may need any libraries it requires.
-           dlpredeps="$dlpredeps$dependency_libs"
+           compile_command="$compile_command$dependency_libs"
+           finalize_command="$finalize_command$dependency_libs"
            prev=
            continue
          fi
@@ -2049,10 +2049,6 @@ static const void *lt_preloaded_setup() {
        compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
        finalize_command=`$echo "X$finalize_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
 
-       # Append dependencies from dlopened modules
-       compile_command="$compile_command$dlpredeps"
-       finalize_command="$finalize_command$dlpredeps"
-
        # We have no uninstalled library dependencies, so finalize right now.
        $show "$compile_command"
        $run eval "$compile_command"
@@ -2063,10 +2059,6 @@ static const void *lt_preloaded_setup() {
       compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
       finalize_command=`$echo "X$finalize_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'T%g'`
 
-      # Append dependencies from dlopened modules
-      compile_command="$compile_command$dlpredeps"
-      finalize_command="$finalize_command$dlpredeps"
-
       # Create the binary in the object directory, then wrap it.
       if test ! -d $output_objdir; then
        $show "$mkdir $output_objdir"