diff options
Diffstat (limited to 'meta/classes/base.bbclass')
-rw-r--r-- | meta/classes/base.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 575352d3f0..1f9baf93bf 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -368,7 +368,8 @@ python () { | |||
368 | # if multiple differences are present? | 368 | # if multiple differences are present? |
369 | # Look through PACKAGE_ARCHS for the priority order? | 369 | # Look through PACKAGE_ARCHS for the priority order? |
370 | if pkgarch and pkgarch == mach_arch: | 370 | if pkgarch and pkgarch == mach_arch: |
371 | bb.fatal("Recipe %s is marked as only being architecture specific but seems to have machine specific packages?" % d.getVar("PN", True)) | 371 | bb.data.setVar('PACAKGE_ARCH', "${MACHINE_ARCH}", d) |
372 | 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)) | ||
372 | } | 373 | } |
373 | 374 | ||
374 | def check_gcc3(data): | 375 | def check_gcc3(data): |