]> code.ossystems Code Review - openembedded-core.git/commitdiff
base.bbclass: Fix PACKAGE_ARCH typo
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 27 Jul 2011 14:04:24 +0000 (15:04 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 27 Jul 2011 15:16:46 +0000 (16:16 +0100)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/base.bbclass

index 3ed1bb84b901ea6ff3b3ca2185768ff6c9a8e4e5..a0a189f818629a1d44ca932ac4c6eca19a44082a 100644 (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))
 }