diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-27 15:04:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-27 16:18:51 +0100 |
commit | 0960f3e0502b7b26a09d4eed599e5f31cd9aeca0 (patch) | |
tree | e3661755c9271133ba116c6007ef60611172c95b /meta | |
parent | 7a63a98f7448a48819154b77d3ee3d2460b4fd66 (diff) | |
download | poky-0960f3e0502b7b26a09d4eed599e5f31cd9aeca0.tar.gz |
base.bbclass: Fix PACKAGE_ARCH typo
(From OE-Core rev: 22a42df1843c8a95cf3be214a413d660adaadb32)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/base.bbclass | 2 |
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 | ||