From: Joel E. Denny Date: Sat, 26 May 2007 18:19:34 +0000 (+0000) Subject: * src/Makefile.am (yacc): Quote target action commands properly so X-Git-Tag: v2.3b~126 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/5a43d4184f2318c02b6ba87656559e8b5bb424ef * src/Makefile.am (yacc): Quote target action commands properly so that the yacc script isn't corrupt. Reported by Hans Aberg at . --- diff --git a/ChangeLog b/ChangeLog index e151d0bc..d42aa254 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-05-26 Joel E. Denny + + * src/Makefile.am (yacc): Quote target action commands properly so + that the yacc script isn't corrupt. Reported by Hans Aberg at + . + 2007-05-20 Joel E. Denny Extend the front-end API for %define variables to more completely diff --git a/src/Makefile.am b/src/Makefile.am index 2592256b..1ec19808 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -80,7 +80,7 @@ MOSTLYCLEANFILES = yacc yacc: echo '#! /bin/sh' >$@ - echo "exec '$(bindir)/bison' -y \"$$@\"" >>$@ + echo "exec '$(bindir)/bison' -y "'"$$@"' >>$@ chmod a+x $@ echo: