mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 12:32:29 +00:00
build: fix make distcheck
The change from GST_ALL_CFLAGS to GST_OPTION_CFLAGS dropped the includes, putting them back fixes make distcheck.
This commit is contained in:
parent
d11b1f19df
commit
3d5843e1f4
1 changed files with 2 additions and 1 deletions
|
@ -15,7 +15,8 @@ nodist_libgstparse_la_SOURCES = lex._gst_parse_yy.c grammar.tab.c
|
|||
CLEANFILES += grammar.tab.c lex._gst_parse_yy.c
|
||||
|
||||
# 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_CFLAGS = -I$(top_srcdir) -I$(top_builddir) \
|
||||
$(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_OPTION_CFLAGS)
|
||||
libgstparse_la_LIBADD = $(GST_ALL_LIBS)
|
||||
|
||||
noinst_HEADERS = grammar.tab.h types.h
|
||||
|
|
Loading…
Reference in a new issue