From: Michael Matz Date: Mon, 29 May 2000 10:42:50 +0000 (+0000) Subject: * ltmain.in: fix quoting for $var_value. X-Git-Tag: release-1-3d~170 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=786438a679bf69e8c038164e37482741891105f4;p=thirdparty%2Flibtool.git * ltmain.in: fix quoting for $var_value. --- diff --git a/ChangeLog b/ChangeLog index ef65af383..43b398298 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2000-05-29 Michael Matz - + + * ltmain.in: fix quoting for $var_value. + * ltconfig.in: check for dlfcn.h: include return value to make -Wall in CFLAGS work. diff --git a/ltmain.in b/ltmain.in index 785a9f407..17686090f 100644 --- 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.