]> sourceware.org Git - automake.git/commitdiff
ylwrap bug fix
authorTom Tromey <tromey@redhat.com>
Tue, 27 May 1997 04:51:07 +0000 (04:51 +0000)
committerTom Tromey <tromey@redhat.com>
Tue, 27 May 1997 04:51:07 +0000 (04:51 +0000)
ChangeLog
lib/ylwrap
ylwrap

index 48b5d5db2ca0a0bdb0f6f030c3753b96abb9c04f..9d0c7631e16320fe4937964e5153ddbf804c1fdb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon May 26 22:50:49 1997  Tom Tromey  <tromey@cygnus.com>
+
+       * ylwrap: Don't quote $prog when executing it.  From Jim
+       Meyering.
+
 Thu May 15 12:05:20 1997  Tom Tromey  <tromey@cygnus.com>
 
        * automake.in (handle_merge_targets): Set INSTALL_SCRIPT in
index d74184c10ecce01e0782142150009f023ccf8951..8aaff0f6fdae7c6da53412f5b1286f62cd5ed1c2 100755 (executable)
@@ -61,7 +61,7 @@ trap "cd `pwd`; rm -rf $dirname > /dev/null 2>&1" 1 2 3 15
 mkdir $dirname || exit 1
 
 cd $dirname
-"$prog" ${1+"$@"} "$input"
+$prog ${1+"$@"} "$input"
 status=$?
 
 if test $status -eq 0; then
diff --git a/ylwrap b/ylwrap
index d74184c10ecce01e0782142150009f023ccf8951..8aaff0f6fdae7c6da53412f5b1286f62cd5ed1c2 100755 (executable)
--- a/ylwrap
+++ b/ylwrap
@@ -61,7 +61,7 @@ trap "cd `pwd`; rm -rf $dirname > /dev/null 2>&1" 1 2 3 15
 mkdir $dirname || exit 1
 
 cd $dirname
-"$prog" ${1+"$@"} "$input"
+$prog ${1+"$@"} "$input"
 status=$?
 
 if test $status -eq 0; then
This page took 0.040099 seconds and 5 git commands to generate.