diff options
-rw-r--r-- | meta/classes/base.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 2d13f43788..069d5febaa 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -708,6 +708,10 @@ def base_after_parse_two(d): | |||
708 | 708 | ||
709 | def base_after_parse(d): | 709 | def base_after_parse(d): |
710 | import bb, os | 710 | import bb, os |
711 | |||
712 | # Make sure MACHINE *isn't* exported | ||
713 | bb.data.delVarFlag('MACHINE', 'export', d) | ||
714 | |||
711 | mach_arch = bb.data.getVar('MACHINE_ARCH', d, 1) | 715 | mach_arch = bb.data.getVar('MACHINE_ARCH', d, 1) |
712 | old_arch = bb.data.getVar('PACKAGE_ARCH', d, 1) | 716 | old_arch = bb.data.getVar('PACKAGE_ARCH', d, 1) |
713 | if (old_arch == mach_arch): | 717 | if (old_arch == mach_arch): |