]> git.saurik.com Git - bison.git/commitdiff
Don't specify the skeleton twice in the example.
authorAkim Demaille <demaille@gostai.com>
Fri, 18 Jul 2008 07:17:00 +0000 (09:17 +0200)
committerAkim Demaille <demaille@gostai.com>
Mon, 3 Nov 2008 21:00:57 +0000 (22:00 +0100)
* examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
file does what is needed.

ChangeLog
examples/calc++/Makefile.am

index a0e483ee107821aac4e4a3f2f70aa2707bc9e0ac..63d669442043de86cee501ea16e76dbc198b74b8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-11-03  Akim Demaille  <demaille@gostai.com>
+
+       Don't specify the skeleton twice in the example.
+       * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
+       file does what is needed.
+
 2008-11-03  Akim Demaille  <demaille@gostai.com>
 
        bench: Improve output.
index 604673849f63c30ec43dfe9fa22ca5618359dd77..1c422846c2591f88e5aab8fc3d38fb3c7b551ff7 100644 (file)
@@ -1,5 +1,5 @@
 ## Process this file with automake to produce Makefile.in -*-Makefile-*-
-## Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+## Copyright (C) 2005, 2006, 2008 Free Software Foundation, Inc.
 
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -56,7 +56,7 @@ EXTRA_DIST = $(srcdir)/calc++-parser.stamp $(srcdir)/calc++-parser.yy
 $(srcdir)/calc++-parser.stamp: $(srcdir)/calc++-parser.yy $(BISON_IN)
        @rm -f calc++-parser.tmp
        @touch calc++-parser.tmp
-       $(BISON) -d -ra -S lalr1.cc -o $(srcdir)/calc++-parser.cc \
+       $(BISON) -d -ra -o $(srcdir)/calc++-parser.cc \
          $(srcdir)/calc++-parser.yy
        @mv -f calc++-parser.tmp $@