From 09e6af4dacb4160bc47161a8459bc24103130621 Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Thu, 13 Sep 2001 21:20:08 +0000 Subject: [PATCH] * ltmain.in (exec_cmd): Don't overquote or we end up with this: $ libtool --mode=execute echo foo "foo" Reported by Rob Browning --- ChangeLog | 7 +++++++ ltmain.in | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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 -- 2.47.2