]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* ltmain.in: fix quoting for $var_value.
authorMichael Matz <matz@ifh.de>
Mon, 29 May 2000 10:40:46 +0000 (10:40 +0000)
committerGary V. Vaughan <gary@gnu.org>
Mon, 29 May 2000 10:40:46 +0000 (10:40 +0000)
ChangeLog
ltmain.in

index ac4888c602ad760443efad420018182177c0ff89..36b9e2cc562c3ad9f88d4b902b56915ca431bd6f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,6 @@
-2000-05-29  Michael Matz  <matz@ifh.de>       
+2000-05-29  Michael Matz  <matz@ifh.de>
+
+       * ltmain.in: fix quoting for $var_value.
        
        * ltconfig.in: check for dlfcn.h: include return value
        to make -Wall in CFLAGS work.  
index 509c338d6f827e3345c2104579dbf036df718172..f9d76c24ea99edd095622c5211bacef61ffc9201 100644 (file)
--- a/ltmain.in
+++ b/ltmain.in
@@ -1422,7 +1422,7 @@ EOF
 
     if test -n "$shlibpath_var"; then
       # get the directories listed in $shlibpath_var
-      eval shlib_search_path=\`\$echo \"X \${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`
+      eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`
     else
       shlib_search_path=
     fi
@@ -3558,7 +3558,7 @@ static const void *lt_preloaded_setup() {
        # Preserve any variables that may affect compiler behavior
        for var in $variables_saved_for_relink; do
          eval var_value=\$$var
-         var_value=`\$echo \"X$var_value\" | $Xsed -e "$sed_quote_subst"`
+         var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
          relink_command="$var=\"$var_value\"; export $var; $relink_command"
        done
        relink_command="cd `pwd`; $relink_command"
@@ -3876,7 +3876,7 @@ fi\
       # Preserve any variables that may affect compiler behavior
       for var in $variables_saved_for_relink; do
        eval var_value=\$$var
-       var_value=`\$echo \"X$var_value\" | $Xsed -e "$sed_quote_subst"`
+       var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
        relink_command="$var=\"$var_value\"; export $var; $relink_command"
       done
       # Quote the link command for shipping.