From 39eaa038a1a3cc7030f9423d93deea051c667149 Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Thu, 19 Nov 1998 20:31:26 +0000 Subject: [PATCH] * ltmain.in: missing `test' between `&&' and `"$module"' --- ChangeLog | 2 ++ ltmain.in | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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 -- 2.47.2