From: Peter O'Gorman Date: Sat, 22 Nov 2003 14:12:57 +0000 (+0000) Subject: * ltmain.in: Test $old_striplib before using it, not $striplib. X-Git-Tag: release-1-9b~236 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33a0b234b00b460e7b55c4fa238a407159de4581;p=thirdparty%2Flibtool.git * ltmain.in: Test $old_striplib before using it, not $striplib. --- diff --git a/ChangeLog b/ChangeLog index f702fc6fd..3779eab3e 100644 --- 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 diff --git a/ltmain.in b/ltmain.in index d2243259a..df54d1384 100644 --- 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