sstate: Set SSTAGE_PKGARCH for allarch packages to allow reuse
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 20 Jul 2012 15:52:55 +0000 (16:52 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 22 Jul 2012 10:42:23 +0000 (11:42 +0100)
allarch sstate packages could be marked as machine or package_arch specific. This
change ensures they are not.

(From OE-Core rev: f3104240ad5bb542c339ee29b2672523ad3ae50c)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/sstate.bbclass

index d572f0e..570b371 100644 (file)
@@ -32,6 +32,9 @@ python () {
         d.setVar('SSTATE_PKGARCH', d.expand("${SDK_ARCH}"))
     elif bb.data.inherits_class('cross-canadian', d):
         d.setVar('SSTATE_PKGARCH', d.expand("${SDK_ARCH}_${PACKAGE_ARCH}"))
+    elif bb.data.inherits_class('allarch', d):
+        d.setVar('SSTATE_PKGARCH', "allarch")
+        d.setVar('SSTATE_MANMACH', d.expand("allarch_${MACHINE}"))
     else:
         d.setVar('SSTATE_MANMACH', d.expand("${MACHINE}"))