summaryrefslogtreecommitdiff
path: root/ext/kate
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2012-02-03 00:50:33 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2012-02-03 00:50:33 +0000
commitf8f462045184086e610079c872b80e745b7d8474 (patch)
tree14d3ec94e02541610ff3fe2d7cb868bb7f55816d /ext/kate
parent0d1c9624ea568456c23845c0673bf7bee8ebace3 (diff)
downloadgstreamer-plugins-bad-f8f462045184086e610079c872b80e745b7d8474.tar.gz
build: fix CFLAGS order and LIBS order
_BAD_CFLAGS should always come first, then GST_PLUGINS_BASE_CFLAGS, then GST_BASE_CFLAGS then GST_CFLAGS. Same for libs: first plugins base libs, then GST_BASE_LIB then GST_LIBS.
Diffstat (limited to 'ext/kate')
-rw-r--r--ext/kate/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/kate/Makefile.am b/ext/kate/Makefile.am
index d732ffa65..4e310d92b 100644
--- a/ext/kate/Makefile.am
+++ b/ext/kate/Makefile.am
@@ -9,7 +9,7 @@ libgstkate_la_SOURCES += gstkatetiger.c
endif
# flags used to compile this plugin
-libgstkate_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_PLUGINS_BAD_CFLAGS) $(TIGER_CFLAGS) $(KATE_CFLAGS)
+libgstkate_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(TIGER_CFLAGS) $(KATE_CFLAGS)
libgstkate_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_MAJORMINOR) -lgsttag-$(GST_MAJORMINOR) $(GST_LIBS) $(TIGER_LIBS) $(KATE_LIBS)
libgstkate_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstkate_la_LIBTOOLFLAGS = --tag=disable-static