aboutsummaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-07-27 15:04:24 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-07-27 16:16:46 +0100
commit22a42df1843c8a95cf3be214a413d660adaadb32 (patch)
tree71ef489fbbbcd0d8f2bed7e8189f2238a2a5e0ec /meta
parent4f6783b83d722d040707d0b7cd69f27b133bd562 (diff)
downloadopenembedded-core-contrib-22a42df1843c8a95cf3be214a413d660adaadb32.tar.gz
base.bbclass: Fix PACKAGE_ARCH typo
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/base.bbclass2
1 files changed, 1 insertions, 1 deletions
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))
}