diff options
-rw-r--r-- | meta/classes/multilib.bbclass | 2 | ||||
-rw-r--r-- | meta/classes/multilib_global.bbclass | 2 | ||||
-rw-r--r-- | meta/conf/multilib.conf | 7 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python-pygobject_2.27.91.bb | 2 |
4 files changed, 10 insertions, 3 deletions
diff --git a/meta/classes/multilib.bbclass b/meta/classes/multilib.bbclass index 0ea1038de9..6c0dd37930 100644 --- a/meta/classes/multilib.bbclass +++ b/meta/classes/multilib.bbclass | |||
@@ -8,7 +8,7 @@ python multilib_virtclass_handler () { | |||
8 | return | 8 | return |
9 | 9 | ||
10 | # There should only be one kernel in multilib configs | 10 | # There should only be one kernel in multilib configs |
11 | if bb.data.inherits_class('kernel', e.data) or bb.data.inherits_class('module-base', e.data) or bb.data.inherits_class('allarch', e.data): | 11 | if bb.data.inherits_class('kernel', e.data) or bb.data.inherits_class('module-base', e.data): |
12 | raise bb.parse.SkipPackage("We shouldn't have multilib variants for the kernel") | 12 | raise bb.parse.SkipPackage("We shouldn't have multilib variants for the kernel") |
13 | 13 | ||
14 | if bb.data.inherits_class('image', e.data): | 14 | if bb.data.inherits_class('image', e.data): |
diff --git a/meta/classes/multilib_global.bbclass b/meta/classes/multilib_global.bbclass index cd22163894..2da66a5e6e 100644 --- a/meta/classes/multilib_global.bbclass +++ b/meta/classes/multilib_global.bbclass | |||
@@ -5,7 +5,7 @@ python multilib_virtclass_handler_global () { | |||
5 | variant = e.data.getVar("BBEXTENDVARIANT", True) | 5 | variant = e.data.getVar("BBEXTENDVARIANT", True) |
6 | 6 | ||
7 | if isinstance(e, bb.event.RecipeParsed) and not variant: | 7 | if isinstance(e, bb.event.RecipeParsed) and not variant: |
8 | if bb.data.inherits_class('kernel', e.data) or bb.data.inherits_class('module-base', e.data) or bb.data.inherits_class('allarch', e.data): | 8 | if bb.data.inherits_class('kernel', e.data) or bb.data.inherits_class('module-base', e.data): |
9 | variants = (e.data.getVar("MULTILIB_VARIANTS", True) or "").split() | 9 | variants = (e.data.getVar("MULTILIB_VARIANTS", True) or "").split() |
10 | 10 | ||
11 | # Process PROVIDES | 11 | # Process PROVIDES |
diff --git a/meta/conf/multilib.conf b/meta/conf/multilib.conf index 3133bf1831..b9da33ae4a 100644 --- a/meta/conf/multilib.conf +++ b/meta/conf/multilib.conf | |||
@@ -452,3 +452,10 @@ BBCLASSEXTEND_append_pn-zip = " ${MULTILIBS}" | |||
452 | BBCLASSEXTEND_append_pn-zlib = " ${MULTILIBS}" | 452 | BBCLASSEXTEND_append_pn-zlib = " ${MULTILIBS}" |
453 | BBCLASSEXTEND_append_pn-zypper = " ${MULTILIBS}" | 453 | BBCLASSEXTEND_append_pn-zypper = " ${MULTILIBS}" |
454 | BBCLASSEXTEND_append_pn-libsdl = " ${MULTILIBS}" | 454 | BBCLASSEXTEND_append_pn-libsdl = " ${MULTILIBS}" |
455 | BBCLASSEXTEND_append_pn-qemu-config = " ${MULTILIBS}" | ||
456 | BBCLASSEXTEND_append_pn-x11-common = " ${MULTILIBS}" | ||
457 | BBCLASSEXTEND_append_pn-update-rc.d = " ${MULTILIBS}" | ||
458 | BBCLASSEXTEND_append_pn-avahi-ui = " ${MULTILIBS}" | ||
459 | BBCLASSEXTEND_append_pn-python-pycairo = " ${MULTILIBS}" | ||
460 | BBCLASSEXTEND_append_pn-python-pygtk = " ${MULTILIBS}" | ||
461 | BBCLASSEXTEND_append_pn-python-pygobject = " ${MULTILIBS}" | ||
diff --git a/meta/recipes-devtools/python/python-pygobject_2.27.91.bb b/meta/recipes-devtools/python/python-pygobject_2.27.91.bb index 9ff2fe7ddb..fd696a5515 100644 --- a/meta/recipes-devtools/python/python-pygobject_2.27.91.bb +++ b/meta/recipes-devtools/python/python-pygobject_2.27.91.bb | |||
@@ -2,7 +2,7 @@ DESCRIPTION = "Python GObject bindings" | |||
2 | SECTION = "devel/python" | 2 | SECTION = "devel/python" |
3 | LICENSE = "LGPLv2.1" | 3 | LICENSE = "LGPLv2.1" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7" |
5 | DEPENDS = "python python-pygobject-native-${PV} glib-2.0" | 5 | DEPENDS = "python python-pygobject-native glib-2.0" |
6 | DEPENDS_virtclass-native = "glib-2.0-native" | 6 | DEPENDS_virtclass-native = "glib-2.0-native" |
7 | RDEPENDS_virtclass-native = "" | 7 | RDEPENDS_virtclass-native = "" |
8 | PR = "r2" | 8 | PR = "r2" |