]> git.saurik.com Git - bison.git/commitdiff
* src/Makefile.am (bison.simple): Fix the awk program: quote only
authorAkim Demaille <akim@epita.fr>
Fri, 17 Mar 2000 13:33:02 +0000 (13:33 +0000)
committerAkim Demaille <akim@epita.fr>
Fri, 17 Mar 2000 13:33:02 +0000 (13:33 +0000)
the file name, not the whole `#line LINE FILE'.

ChangeLog
src/Makefile.am

index b0e45468671716923b0c2838dfbe3584adbac230..fcd7c4a09fe2ad6e8d8e2f064e430af6fe1e4c6a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-03-17  Akim Demaille  <akim@epita.fr>
+
+       * src/Makefile.am (bison.simple): Fix the awk program: quote only
+       the file name, not the whole `#line LINE FILE'.
+
 2000-03-17  Akim Demaille  <akim@epita.fr>
 
        On syntax errors, report the token on which we choked.
index 1f5ba8dd13f7fa005e837f162ff53b12c6296222..f325b72ae04fa5c5f53978428082344e45509dfd 100644 (file)
@@ -27,7 +27,7 @@ EXTRA_DIST = bison.s1 bison.hairy build.com bison.cld vmshlp.mar
 bison.simple: bison.s1 Makefile
        sed -e "s/@bison_version@/$(VERSION)/" $(srcdir)/bison.s1 | \
        awk '\
-       /^#line/ { printf "\"#line %d $(datadir)/bison.simple\"\n", NR+1; next }\
+       /^#line/ { printf "#line %d \"$(datadir)/bison.simple\"\n", NR+1; next }\
        { print }' >$@t
        mv $@t $@