From: Richard Purdie Date: Wed, 27 Jul 2011 14:04:24 +0000 (+0100) Subject: base.bbclass: Fix PACKAGE_ARCH typo X-Git-Tag: 2011-1~546 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=22a42df1843c8a95cf3be214a413d660adaadb32;p=openembedded-core.git base.bbclass: Fix PACKAGE_ARCH typo Signed-off-by: Richard Purdie --- diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 3ed1bb84b9..a0a189f818 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -407,7 +407,7 @@ python () { # if multiple differences are present? # Look through PACKAGE_ARCHS for the priority order? if pkgarch and pkgarch == mach_arch: - bb.data.setVar('PACAKGE_ARCH', "${MACHINE_ARCH}", d) + bb.data.setVar('PACKAGE_ARCH', "${MACHINE_ARCH}", d) bb.warn("Recipe %s is marked as only being architecture specific but seems to have machine specific packages?! The recipe may as well mark itself as machine specific directly." % d.getVar("PN", True)) }