From 5a43d4184f2318c02b6ba87656559e8b5bb424ef Mon Sep 17 00:00:00 2001 From: "Joel E. Denny" Date: Sat, 26 May 2007 18:19:34 +0000 Subject: [PATCH] * src/Makefile.am (yacc): Quote target action commands properly so that the yacc script isn't corrupt. Reported by Hans Aberg at . --- ChangeLog | 6 ++++++ src/Makefile.am | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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: -- 2.47.2