base.bbclass: Fix PACKAGE_ARCH typo

(From OE-Core rev: 22a42df1843c8a95cf3be214a413d660adaadb32)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2011-07-27 15:04:24 +01:00
parent 7a63a98f74
commit 0960f3e050

View File

@@ -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))
}