From: Gary V. Vaughan Date: Thu, 13 Sep 2001 21:20:08 +0000 (+0000) Subject: * ltmain.in (exec_cmd): Don't overquote or we end up with this: X-Git-Tag: release-1-4-3~52 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=09e6af4dacb4160bc47161a8459bc24103130621;p=thirdparty%2Flibtool.git * ltmain.in (exec_cmd): Don't overquote or we end up with this: $ libtool --mode=execute echo foo "foo" Reported by Rob Browning --- diff --git a/ChangeLog b/ChangeLog index bf9fc3dc8..db818b8a3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2001-09-13 Gary V. Vaughan + + * ltmain.in (exec_cmd): Don't overquote or we end up with this: + $ libtool --mode=execute echo foo + "foo" + Reported by Rob Browning + 001-09-13 Assar Westerlund * ltdl.m4 (AC_LTDL_DLLIB): call dlopen with arguments so the test diff --git a/ltmain.in b/ltmain.in index 238cf2b78..76acd11b6 100644 --- a/ltmain.in +++ b/ltmain.in @@ -4610,7 +4610,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