From: Benjamin Otte Date: Wed, 3 Mar 2010 09:00:41 +0000 (+0100) Subject: Make sure generated code doesn't run with -Werror X-Git-Tag: RELEASE-0.10.29~158^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f067d38d1dba22e878a08cc00b479b0bc9e6b3ea;p=platform%2Fupstream%2Fgstreamer.git Make sure generated code doesn't run with -Werror https://bugzilla.gnome.org/show_bug.cgi?id=611692 --- diff --git a/gst/parse/Makefile.am b/gst/parse/Makefile.am index 643b19c..c4323e1 100644 --- a/gst/parse/Makefile.am +++ b/gst/parse/Makefile.am @@ -14,7 +14,8 @@ EXTRA_DIST = \ nodist_libgstparse_la_SOURCES = lex._gst_parse_yy.c grammar.tab.c CLEANFILES += grammar.tab.c lex._gst_parse_yy.c -libgstparse_la_CFLAGS = $(GST_ALL_CFLAGS) +# can't use GST_ALL_CFLAGS here because that'd pull in -Werror +libgstparse_la_CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_OPTION_CFLAGS) libgstparse_la_LIBADD = $(GST_ALL_LIBS) noinst_HEADERS = grammar.tab.h types.h