The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / gstreamer / gst-plugin-x170 / 0001-correct-CFLAGS.patch
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.
4
5 We actually have to use AM_CPPFLAGS as AM_CFLAGS is used everywhere but on the
6 real compiling rule...
7
8 Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
9 ---
10  src/Makefile.am | 2 ++
11  1 file changed, 2 insertions(+)
12
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
20  
21 +AM_CPPFLAGS = @GST_BASE_CFLAGS@
22 +
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
28