From: Pekka Riikonen Date: Fri, 6 Dec 2002 16:21:51 +0000 (+0000) Subject: Compare fix. X-Git-Tag: silc.client.0.9.10.2~8 X-Git-Url: http://git.silcnet.org/gitweb/?a=commitdiff_plain;h=70f0f7e401ca5d5fe8d99e539a1584c5e409dc5e;p=silc.git Compare fix. --- 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