* ltmain.in (exec_cmd): Fix quoting in execute mode so that the

double quotes added by libtool (to prevent lossage with embedded
spaces in filenames etc.) are not interpreted as literals by the
shell.
This commit is contained in:
Gary V. Vaughan 2001-08-13 23:11:48 +00:00
parent 47491fdaa1
commit 79f0167bd3
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2001-08-14 Gary V. Vaughan <gary@gnu.org>
* ltmain.in (exec_cmd): Fix quoting in execute mode so that the
double quotes added by libtool (to prevent lossage with embedded
spaces in filenames etc.) are not interpreted as literals by the
shell.
2001-08-13 Gary V. Vaughan <gary@gnu.org>
* libltdl/ltdl.c (find_file_callback): Fix a multiple free()

View File

@ -5095,7 +5095,7 @@ relink_command=\"$relink_command\""
fi
# Now prepare to actually exec the command.
exec_cmd='"$cmd"$args'
exec_cmd="\$cmd$args"
else
# Display what would be done.
if test -n "$shlibpath_var"; then