diff options
author | Gary Thomas <gary@mlbassoc.com> | 2017-01-21 06:02:18 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-05 09:22:17 +0000 |
commit | d4caf50fc2d7eb63eb5fe96ae9edf0e66e924b4d (patch) | |
tree | 3f9e6208ee2a603ee461ae0f2d19b94317fa0572 /meta/recipes-core | |
parent | 82548f8e9c48e45cf92d5e431360a3c0c8496ab0 (diff) | |
download | poky-d4caf50fc2d7eb63eb5fe96ae9edf0e66e924b4d.tar.gz |
glib-2.0: native package should not depend on DISTRO_FEATURES
xxx-native packages should not depend on ${DISTRO} settings. Doing
so feels inherently wrong and limits the usefulness of sstate-cache.
This patch changes how this package is installed, in particular
removing the dependency on the ${DISTRO_FEATURES} variable in
glib-2.0-native. This will further improve the ability to share
native packages between builds with differences in ${DISTRO_FEATURES}
(From OE-Core rev: ef2b49408f82daaf9bb72b3b339b70a48b9a134b)
Signed-off-by: Gary Thomas <gary@mlbassoc.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/glib-2.0/glib.inc | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes-core/glib-2.0/glib.inc index cb6aca702f..a5db455248 100644 --- a/meta/recipes-core/glib-2.0/glib.inc +++ b/meta/recipes-core/glib-2.0/glib.inc | |||
@@ -92,16 +92,20 @@ do_install_append () { | |||
92 | sed -i -e '1s,#!.*perl,#! ${USRBINPATH}/env perl,' ${D}${bindir}/glib-mkenums | 92 | sed -i -e '1s,#!.*perl,#! ${USRBINPATH}/env perl,' ${D}${bindir}/glib-mkenums |
93 | fi | 93 | fi |
94 | 94 | ||
95 | # Make sure gio-querymodules is unique among multilibs | ||
96 | if test "x${MLPREFIX}" != "x"; then | ||
97 | mv ${D}${libexecdir}/gio-querymodules ${D}${libexecdir}/${MLPREFIX}gio-querymodules | ||
98 | fi | ||
99 | } | ||
100 | |||
101 | do_install_append_class-target () { | ||
102 | # Tests are only installed on targets, not native builds. Separating this out | ||
103 | # keeps glib-2.0-native from depending on ${DISTRO_FEATURES} | ||
95 | if [ -f ${D}${datadir}/installed-tests/glib/gdbus-serialization.test ]; then | 104 | if [ -f ${D}${datadir}/installed-tests/glib/gdbus-serialization.test ]; then |
96 | if ${@bb.utils.contains("DISTRO_FEATURES", "x11", "false", "true", d)}; then | 105 | if ${@bb.utils.contains("DISTRO_FEATURES", "x11", "false", "true", d)}; then |
97 | rm ${D}${datadir}/installed-tests/glib/gdbus-serialization.test | 106 | rm ${D}${datadir}/installed-tests/glib/gdbus-serialization.test |
98 | fi | 107 | fi |
99 | fi | 108 | fi |
100 | |||
101 | # Make sure gio-querymodules is unique among multilibs | ||
102 | if test "x${MLPREFIX}" != "x"; then | ||
103 | mv ${D}${libexecdir}/gio-querymodules ${D}${libexecdir}/${MLPREFIX}gio-querymodules | ||
104 | fi | ||
105 | } | 109 | } |
106 | 110 | ||
107 | do_install_append_libc-musl () { | 111 | do_install_append_libc-musl () { |