]> git.saurik.com Git - bison.git/commitdiff
* src/Makefile.am (yacc): Quote target action commands properly so
authorJoel E. Denny <jdenny@ces.clemson.edu>
Sat, 26 May 2007 18:19:34 +0000 (18:19 +0000)
committerJoel E. Denny <jdenny@ces.clemson.edu>
Sat, 26 May 2007 18:19:34 +0000 (18:19 +0000)
that the yacc script isn't corrupt.  Reported by Hans Aberg at
<http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.

ChangeLog
src/Makefile.am

index e151d0bc47f943500f99307bd5cd7ca7fabcac9c..d42aa25471a1b2831e993d5aaf2ef42af0fdbdb2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-05-26  Joel E. Denny  <jdenny@ces.clemson.edu>
+
+       * src/Makefile.am (yacc): Quote target action commands properly so
+       that the yacc script isn't corrupt.  Reported by Hans Aberg at
+       <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
+
 2007-05-20  Joel E. Denny  <jdenny@ces.clemson.edu>
 
        Extend the front-end API for %define variables to more completely
index 2592256b803c6c1716f335a1d3b4078d960538a9..1ec19808ab5c39c4a42cb3e73494625a63b7cb7f 100644 (file)
@@ -80,7 +80,7 @@ MOSTLYCLEANFILES = yacc
 
 yacc:
        echo '#! /bin/sh' >$@
-       echo "exec '$(bindir)/bison' -y \"$$@\"" >>$@
+       echo "exec '$(bindir)/bison' -y "'"$$@"' >>$@
        chmod a+x $@
 
 echo: