]> git.saurik.com Git - bison.git/commitdiff
build: stop using bison -y
authorAkim Demaille <akim@lrde.epita.fr>
Wed, 27 Feb 2013 14:41:55 +0000 (15:41 +0100)
committerAkim Demaille <akim@lrde.epita.fr>
Mon, 4 Mar 2013 07:25:32 +0000 (08:25 +0100)
* Makefile.am (YACC): Pass -o y.tab.c, so that ylwrap is happy, and
yet we don't pass --yacc to bison.
(AM_YFLAGS): Disable Yacc warnings.

Makefile.am

index 34edfc78c42aac3eb60f15c5bbf788497ef89e9e..7a752d7d6be0d0df25243882f563729048d14713 100644 (file)
@@ -32,8 +32,8 @@ EXTRA_DIST = .prev-version .version \
 ## version of Bison nearby...
 BISON = $(top_builddir)/tests/bison
 BISON_IN = $(top_srcdir)/tests/bison.in
-YACC = $(BISON) -y
-AM_YFLAGS = -d -v --warnings=all,error --report=all
+YACC = $(BISON) -o y.tab.c
+AM_YFLAGS = -d -v -Werror -Wall -Wno-yacc --report=all
 
 # Initialization before completion by local.mk's.
 AM_CFLAGS = $(WARN_CFLAGS)