From: Richard Purdie Date: Wed, 27 Jul 2011 14:04:24 +0000 (+0100) Subject: base.bbclass: Fix PACKAGE_ARCH typo X-Git-Tag: yocto-4.0~40246 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=22a42df1843c8a95cf3be214a413d660adaadb32;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 3ed1bb84b90..a0a189f8186 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)) }