From: Albert Chin-A-Young Date: Mon, 25 Feb 2002 20:46:19 +0000 (+0000) Subject: * ltmain.in: Quote $pic_mode. X-Git-Tag: release-1-4-3~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e32084288cede1f78c8e84fd0f4aa096af514f2f;p=thirdparty%2Flibtool.git * ltmain.in: Quote $pic_mode. --- diff --git a/ChangeLog b/ChangeLog index 294df77fd..81c0fbe76 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-02-25 Albert Chin-A-Young + + * ltmain.in: Quote $pic_mode. + 2002-02-25 Albert Chin-A-Young * ltmain.in: Fix version string under IRIX. diff --git a/ltmain.in b/ltmain.in index f569a205a..954be32e9 100644 --- a/ltmain.in +++ b/ltmain.in @@ -469,7 +469,7 @@ if test -z "$show_help"; then pic_mode=default ;; esac - if test $pic_mode = no && test "$deplibs_check_method" != pass_all; then + if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then # non-PIC code in shared libraries is not supported pic_mode=default fi