From: Alexandre Oliva Date: Thu, 19 Nov 1998 20:31:26 +0000 (+0000) Subject: * ltmain.in: missing `test' between `&&' and `"$module"' X-Git-Tag: start~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=39eaa038a1a3cc7030f9423d93deea051c667149;p=thirdparty%2Flibtool.git * ltmain.in: missing `test' between `&&' and `"$module"' --- diff --git a/ChangeLog b/ChangeLog index 36273e808..729102647 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 1998-11-19 Alexandre Oliva + * ltmain.in: missing `test' between `&&' and `"$module"' + * ltconfig.in (echo_test_string): the whole ltconfig script was too much for DU4.0's ksh, but the first 50 lines will be enough. diff --git a/ltmain.in b/ltmain.in index 998d41171..edb203bb1 100644 --- a/ltmain.in +++ b/ltmain.in @@ -482,7 +482,7 @@ compiler." # If we have no pic_flag and do not compile a module, # then copy the object into place and finish. - if test -z "$pic_flag" && "$module" = no; then + if test -z "$pic_flag" && test "$module" = no; then $show "$LN_S $libobj $obj" if $run $LN_S $libobj $obj; then exit 0