From: Sebastian Dröge Date: Thu, 19 Apr 2007 14:23:25 +0000 (+0000) Subject: gst/parse/Makefile.am: And now fix the building of the flex sources. Now everything... X-Git-Tag: RELEASE-0_10_13~85 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4df2c01e880f742053c01321fc247929969c6b49;p=platform%2Fupstream%2Fgstreamer.git gst/parse/Makefile.am: And now fix the building of the flex sources. Now everything should work as expected. Original commit message from CVS: * gst/parse/Makefile.am: And now fix the building of the flex sources. Now everything should work as expected. --- diff --git a/ChangeLog b/ChangeLog index 3c2b063..0d5a171 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,12 @@ 2007-04-19 Sebastian Dröge * gst/parse/Makefile.am: + And now fix the building of the flex sources. Now everything should + work as expected. + +2007-04-19 Sebastian Dröge + + * gst/parse/Makefile.am: Now hopefully fix the build failures by setting proper rule dependencies and moving instead of copying. diff --git a/gst/parse/Makefile.am b/gst/parse/Makefile.am index 7bbb735..7989476 100644 --- a/gst/parse/Makefile.am +++ b/gst/parse/Makefile.am @@ -45,7 +45,7 @@ endif lex._gst_parse_yy.pre.c: parse.l grammar.tab.pre.h if GENERATE_PARSER - $(FLEX_PATH) -P_gst_parse_yy lex._gst_parse_yy.c && \ + $(FLEX_PATH) -P_gst_parse_yy $^ && \ mv lex._gst_parse_yy.c lex._gst_parse_yy_tmp.c && \ echo '#ifdef HAVE_CONFIG_H' > lex._gst_parse_yy_tmp2.c && \ echo '#include ' >> lex._gst_parse_yy_tmp2.c && \ @@ -78,7 +78,7 @@ endif if GENERATE_PARSER lex._gst_parse_yy.c: parse.l grammar.tab.h - $(FLEX_PATH) -P_gst_parse_yy lex._gst_parse_yy.c && \ + $(FLEX_PATH) -P_gst_parse_yy $^ && \ mv lex._gst_parse_yy.c lex._gst_parse_yy_tmp.c && \ echo '#ifdef HAVE_CONFIG_H' > lex._gst_parse_yy_tmp2.c && \ echo '#include ' >> lex._gst_parse_yy_tmp2.c && \