]> 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:42:50 +0000 (10:42 +0000)
committerGary V. Vaughan <gary@gnu.org>
Mon, 29 May 2000 10:42:50 +0000 (10:42 +0000)
ChangeLog
ltmain.in

index ef65af3835ca09a7c8556eafa7d051eefa3f9e5b..43b398298809e0d6d41725bc37ca75dea05705d7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 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 785a9f4070fd18a5ff306589a2f7cf724d30e4c6..17686090f577c6a6b87318878cf4b5d9e98fee7d 100644 (file)
--- a/ltmain.in
+++ b/ltmain.in
@@ -1271,7 +1271,7 @@ compiler."
 
     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
@@ -3391,7 +3391,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"
@@ -3709,7 +3709,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.