From c6a18b92c23fd31239a32a55b09cee87c108ca9d Mon Sep 17 00:00:00 2001 From: Brian Cameron Date: Mon, 15 Dec 2003 18:40:13 +0000 Subject: [PATCH] Removed grammar.tab.h from the flex command to build lex._gst_parse_yy.c because this caused grammar.tab.h to be incl... Original commit message from CVS: Removed grammar.tab.h from the flex command to build lex._gst_parse_yy.c because this caused grammar.tab.h to be included twice in the file (since it is already included directly in parse.l via an #include statement). Including this file twice was causing Forte to be unable to compile it. --- gst/parse/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/parse/Makefile.am b/gst/parse/Makefile.am index 8914159..d62a5a1 100644 --- a/gst/parse/Makefile.am +++ b/gst/parse/Makefile.am @@ -22,7 +22,7 @@ grammar.tab.c grammar.tab.h: grammar.y ../gstmarshal.h $(BISON_PATH) -d -v -p_gst_parse__yy $(srcdir)/grammar.y -o grammar.tab.c lex._gst_parse_yy.c: parse.l grammar.tab.h - $(FLEX_PATH) -P_gst_parse_yy $^ + $(FLEX_PATH) -P_gst_parse_yy parse.l ## this is so make install without a previous make can work, because ## this dir needs gstmarshal.h generated -- 2.7.4