]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* ltmain.in: missing `test' between `&&' and `"$module"'
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Thu, 19 Nov 1998 20:31:26 +0000 (20:31 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Thu, 19 Nov 1998 20:31:26 +0000 (20:31 +0000)
ChangeLog
ltmain.in

index 36273e80802ec7f91fe9f8231ad82bc6c9c8446b..7291026472ba8b8b2a524769b279ee987a645c76 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 1998-11-19  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
+       * 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.
 
index 998d41171b45e31fe5a6624cd64e5406cf7f50e8..edb203bb11226bcd5a2c1679e807c6843ffd1b9f 100644 (file)
--- 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