* 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>.
This commit is contained in:
Joel E. Denny
2007-05-26 18:19:34 +00:00
parent f124d4233f
commit 5a43d4184f
2 changed files with 7 additions and 1 deletions

View 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: