summaryrefslogtreecommitdiffstats
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:18:51 +0100
commit0960f3e0502b7b26a09d4eed599e5f31cd9aeca0 (patch)
treee3661755c9271133ba116c6007ef60611172c95b
parent7a63a98f7448a48819154b77d3ee3d2460b4fd66 (diff)
downloadpoky-0960f3e0502b7b26a09d4eed599e5f31cd9aeca0.tar.gz
base.bbclass: Fix PACKAGE_ARCH typo
(From OE-Core rev: 22a42df1843c8a95cf3be214a413d660adaadb32) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 () {
407 # if multiple differences are present? 407 # if multiple differences are present?
408 # Look through PACKAGE_ARCHS for the priority order? 408 # Look through PACKAGE_ARCHS for the priority order?
409 if pkgarch and pkgarch == mach_arch: 409 if pkgarch and pkgarch == mach_arch:
410 bb.data.setVar('PACAKGE_ARCH', "${MACHINE_ARCH}", d) 410 bb.data.setVar('PACKAGE_ARCH', "${MACHINE_ARCH}", d)
411 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)) 411 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))
412} 412}
413 413