python-pyasn: bump to version 1.6.0b1
[buildroot-gz.git] / package / gstreamer / gst-plugin-x170 / 0001-correct-CFLAGS.patch
blob9c32e46cce1e44618685ca6d943071bc7a6ebad0
1 The configure script is correctly getting the CFLAGS needed to compile a plugin
2 for gstreamer and storing them in GST_BASE_CFLAGS but the Makefiles are never
3 making use of those.
5 We actually have to use AM_CPPFLAGS as AM_CFLAGS is used everywhere but on the
6 real compiling rule...
8 Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
9 ---
10 src/Makefile.am | 2 ++
11 1 file changed, 2 insertions(+)
13 diff --git a/src/Makefile.am b/src/Makefile.am
14 index 8cb51d1..6af5d91 100644
15 --- a/src/Makefile.am
16 +++ b/src/Makefile.am
17 @@ -5,6 +5,8 @@
18 ##############################################################################
19 plugin_LTLIBRARIES = libgstx170.la
21 +AM_CPPFLAGS = @GST_BASE_CFLAGS@
23 ##############################################################################
24 # for the next set of variables, rename the prefix if you renamed the .la, #
25 # e.g. libgstplugin_la_SOURCES => libmysomething_la_SOURCES #
26 --
27 1.8.1.2