From 70f0f7e401ca5d5fe8d99e539a1584c5e409dc5e Mon Sep 17 00:00:00 2001 From: Pekka Riikonen Date: Fri, 6 Dec 2002 16:21:51 +0000 Subject: [PATCH] Compare fix. --- libtoolfix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libtoolfix b/libtoolfix index 28ec812e..45d582f7 100755 --- a/libtoolfix +++ b/libtoolfix @@ -33,20 +33,20 @@ args=\`echo \$*\` cargs=\`echo \$* | sed -e '/--libtool-enable-shared/s///' -e '/--libtool-enable-static/s///' -e '/--libtool-disable-shared/s///' -e '/--libtool-disable-static/s///'\` for i in \$args do - if test "\$i" == "--libtool-enable-shared"; then + if test "\$i" = "--libtool-enable-shared"; then build_libtool_libs=yes fast_install=yes continue fi - if test "\$i" == "--libtool-disable-shared"; then + if test "\$i" = "--libtool-disable-shared"; then build_libtool_libs=no continue fi - if test "\$i" == "--libtool-enable-static"; then + if test "\$i" = "--libtool-enable-static"; then build_old_libs=yes continue fi - if test "\$i" == "--libtool-disable-static"; then + if test "\$i" = "--libtool-disable-static"; then build_old_libs=no continue fi -- 2.43.0