]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* ltmain.in (exec_cmd): Don't overquote or we end up with this:
authorGary V. Vaughan <gary@gnu.org>
Thu, 13 Sep 2001 21:20:08 +0000 (21:20 +0000)
committerGary V. Vaughan <gary@gnu.org>
Thu, 13 Sep 2001 21:20:08 +0000 (21:20 +0000)
$ libtool --mode=execute echo foo
"foo"
Reported by Rob Browning <rlb@defaultvalue.org>

ChangeLog
ltmain.in

index bf9fc3dc8a08a55ee8e3e9d846d0aed288dd250d..db818b8a32789113d6eb693e8a85969472e00202 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-09-13  Gary V. Vaughan  <gary@gnu.org>
+
+       * ltmain.in (exec_cmd): Don't overquote or we end up with this:
+       $ libtool --mode=execute echo foo
+       "foo"
+       Reported by Rob Browning <rlb@defaultvalue.org>
+
 001-09-13  Assar Westerlund  <assar@sics.se>
 
        * ltdl.m4 (AC_LTDL_DLLIB): call dlopen with arguments so the test
index 238cf2b7854dae4a81eded9ff8c2bed0662eafa5..76acd11b644f90ca8bb60f66fe5a9ddd5f41407e 100644 (file)
--- 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