Turns out I did a silly thing in OE-Core revision 9b1831cf4a2940dca1d23f14dff460ff5a50a520 and forgot to remove the explicit setting of PACKAGE_ARCH outside of the anonymous python function; the original bug was apparently fixed but the functionality of allarch.bbclass was being disabled because it was able to see that PACKAGE_ARCH was not set to "all" - which was what I was trying to ensure.
Signed-off-by: Paul Eggleton <[email protected]> --- meta/recipes-core/meta/nativesdk-buildtools-perl-dummy.bb | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta/recipes-core/meta/nativesdk-buildtools-perl-dummy.bb b/meta/recipes-core/meta/nativesdk-buildtools-perl-dummy.bb index 6fb2b64..23c0a5c 100644 --- a/meta/recipes-core/meta/nativesdk-buildtools-perl-dummy.bb +++ b/meta/recipes-core/meta/nativesdk-buildtools-perl-dummy.bb @@ -12,8 +12,6 @@ python() { d.setVar('PACKAGE_ARCH', 'buildtools-dummy-${SDKPKGSUFFIX}') } -PACKAGE_ARCH = "buildtools-dummy-${SDKPKGSUFFIX}" - PERLPACKAGES = "nativesdk-perl \ nativesdk-perl-module-file-path" -- 2.5.0 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
