diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2012-02-03 00:50:33 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2012-02-03 00:50:33 +0000 |
commit | f8f462045184086e610079c872b80e745b7d8474 (patch) | |
tree | 14d3ec94e02541610ff3fe2d7cb868bb7f55816d /gst/mve | |
parent | 0d1c9624ea568456c23845c0673bf7bee8ebace3 (diff) | |
download | gstreamer-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 'gst/mve')
-rw-r--r-- | gst/mve/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/mve/Makefile.am b/gst/mve/Makefile.am index 2c3104f64..8be4517d3 100644 --- a/gst/mve/Makefile.am +++ b/gst/mve/Makefile.am @@ -1,6 +1,6 @@ plugin_LTLIBRARIES = libgstmve.la -libgstmve_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_PLUGINS_BAD_CFLAGS) $(GST_CFLAGS) +libgstmve_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) libgstmve_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(LIBM) libgstmve_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstmve_la_LIBTOOLFLAGS = --tag=disable-static |