pango / ptest: clean CFLAGS for host binary
authorWenzong Fan <wenzong.fan@windriver.com>
Tue, 2 Sep 2014 05:53:40 +0000 (01:53 -0400)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 3 Sep 2014 10:09:03 +0000 (11:09 +0100)
The binary gen-all-unicode needs to be compiled for the host
architecture, the CFLAGS passed to target system could cause
build issues for it.

(From OE-Core rev: b797cfbe605ab250a5eb714a7d5175861690ae6e)

Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-graphics/pango/pango.inc

index 1ad46a3..b59d33d 100644 (file)
@@ -67,7 +67,7 @@ fi
 # This binary needs to be compiled for the host architecture.  This isn't pretty!
 do_compile_prepend () {
        if ${@base_contains('DISTRO_FEATURES', 'ptest', 'true', 'false', d)}; then
-               make CC="${BUILD_CC}" AM_CPPFLAGS="$(pkg-config-native --cflags glib-2.0)" gen_all_unicode_LDADD="$(pkg-config-native --libs glib-2.0)" -C ${B}/tests gen-all-unicode
+               make CC="${BUILD_CC}" CFLAGS="" AM_CPPFLAGS="$(pkg-config-native --cflags glib-2.0)" gen_all_unicode_LDADD="$(pkg-config-native --libs glib-2.0)" -C ${B}/tests gen-all-unicode
        fi
 }