]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* ltmain.in: Test $old_striplib before using it, not $striplib.
authorPeter O'Gorman <peter@pogma.com>
Sat, 22 Nov 2003 14:12:57 +0000 (14:12 +0000)
committerPeter O'Gorman <peter@pogma.com>
Sat, 22 Nov 2003 14:12:57 +0000 (14:12 +0000)
ChangeLog
ltmain.in

index f702fc6fdb29c2145805324721fb50ae1eeb46cf..3779eab3e1b0b0d74114cb89b27a27bf3ab908a9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,8 @@
        * ltmain.in: Move eval to after command separation to allow ~ in paths.
 
        * tests/demo-hardcode.test: Call ./libtool not libtool.
+
+       * ltmain.in: Test $old_striplib before using it, not $striplib.
        
 2003-11-22  Gary V. Vaughan  <gary@gnu.org>
 
index d2243259ad9430862ba7b2e5b1c8d4bfa4c8033e..df54d13846a2c94abbc7174baee2a22e4d1c1ad5 100644 (file)
--- a/ltmain.in
+++ b/ltmain.in
@@ -5918,7 +5918,7 @@ relink_command=\"$relink_command\""
       $show "$install_prog $file $oldlib"
       $run eval "$install_prog \$file \$oldlib" || exit $?
 
-      if test -n "$stripme" && test -n "$striplib"; then
+      if test -n "$stripme" && test -n "$old_striplib"; then
        $show "$old_striplib $oldlib"
        $run eval "$old_striplib $oldlib" || exit $?
       fi