diff options
author | Ross Burton <ross.burton@intel.com> | 2012-11-09 10:09:29 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-12 13:36:37 +0000 |
commit | 7ea8496ce085d507166efbd3a5e4d20444d3c35f (patch) | |
tree | 3ab892adc8d6e01a280f475413e72c8874b63b80 /meta/recipes-graphics | |
parent | 85bfe3c931d7ef5ee461251abb6772564733e072 (diff) | |
download | poky-7ea8496ce085d507166efbd3a5e4d20444d3c35f.tar.gz |
meta: remove redundant _FOR_BUILD variables
(From OE-Core rev: acabd2158d9004dedfdfad8c170b77d32684f3fc)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/mutter/mutter.inc | 5 | ||||
-rw-r--r-- | meta/recipes-graphics/xorg-lib/libx11.inc | 8 |
2 files changed, 4 insertions, 9 deletions
diff --git a/meta/recipes-graphics/mutter/mutter.inc b/meta/recipes-graphics/mutter/mutter.inc index da78827ac0..942349f95b 100644 --- a/meta/recipes-graphics/mutter/mutter.inc +++ b/meta/recipes-graphics/mutter/mutter.inc | |||
@@ -20,9 +20,8 @@ EXTRA_OECONF += "--disable-verbose \ | |||
20 | FILES_${PN} += "${datadir}/themes ${libdir}/mutter/plugins/*.so ${datadir}/gnome/wm-properties/" | 20 | FILES_${PN} += "${datadir}/themes ${libdir}/mutter/plugins/*.so ${datadir}/gnome/wm-properties/" |
21 | FILES_${PN}-dbg += "${libdir}/mutter/plugins/.debug/*" | 21 | FILES_${PN}-dbg += "${libdir}/mutter/plugins/.debug/*" |
22 | 22 | ||
23 | export CC_FOR_BUILD = "${BUILD_CC}" | 23 | CFLAGS_FOR_BUILD += "-I${STAGING_INCDIR_NATIVE}/glib-2.0 -I${STAGING_INCDIR_NATIVE}/glib-2.0/include" |
24 | export CFLAGS_FOR_BUILD = "${BUILD_CFLAGS} -I${STAGING_INCDIR_NATIVE}/glib-2.0 -I${STAGING_INCDIR_NATIVE}/glib-2.0/include" | 24 | LDFLAGS_FOR_BUILD += "-L${STAGING_LIBDIR_NATIVE} -lglib-2.0" |
25 | export LDFLAGS_FOR_BUILD = "${BUILD_LDFLAGS} -L${STAGING_LIBDIR_NATIVE} -lglib-2.0" | ||
26 | 25 | ||
27 | do_configure_prepend () { | 26 | do_configure_prepend () { |
28 | echo "EXTRA_DIST=" > ${S}/gnome-doc-utils.make | 27 | echo "EXTRA_DIST=" > ${S}/gnome-doc-utils.make |
diff --git a/meta/recipes-graphics/xorg-lib/libx11.inc b/meta/recipes-graphics/xorg-lib/libx11.inc index 71e74f77dc..e0fce3eba2 100644 --- a/meta/recipes-graphics/xorg-lib/libx11.inc +++ b/meta/recipes-graphics/xorg-lib/libx11.inc | |||
@@ -30,12 +30,8 @@ EXTRA_OEMAKE += 'CWARNFLAGS=""' | |||
30 | PACKAGECONFIG ??= "" | 30 | PACKAGECONFIG ??= "" |
31 | PACKAGECONFIG[xcms] = "--enable-xcms,--disable-xcms" | 31 | PACKAGECONFIG[xcms] = "--enable-xcms,--disable-xcms" |
32 | 32 | ||
33 | # src/util/makekeys needs to be compiled natively, so tell it what compiler to | 33 | # src/util/makekeys is built natively but needs -D_GNU_SOURCE defined. |
34 | # use. | 34 | CPPFLAGS_FOR_BUILD += "-D_GNU_SOURCE" |
35 | export CC_FOR_BUILD = "${BUILD_CC}" | ||
36 | export CFLAGS_FOR_BUILD = "${BUILD_CFLAGS} -D_GNU_SOURCE" | ||
37 | export CPPFLAGS_FOR_BUILD = "${BUILD_CPPFLAGS}" | ||
38 | export LDFLAGS_FOR_BUILD = "${BUILD_LDFLAGS}" | ||
39 | 35 | ||
40 | PACKAGES =+ "${PN}-xcb" | 36 | PACKAGES =+ "${PN}-xcb" |
41 | 37 | ||