diff options
-rw-r--r-- | meta/classes/base.bbclass | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index e08a2be2d2..3cff42c138 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -714,9 +714,15 @@ def base_after_parse_two(d): | |||
714 | def base_after_parse(d): | 714 | def base_after_parse(d): |
715 | import bb, os | 715 | import bb, os |
716 | 716 | ||
717 | # Make sure MACHINE *isn't* exported | 717 | # Make sure MACHINE isn't exported |
718 | # (breaks binutils at least) | ||
718 | bb.data.delVarFlag('MACHINE', 'export', d) | 719 | bb.data.delVarFlag('MACHINE', 'export', d) |
719 | bb.data.setVarFlag('MACHINE', 'unexport', 1, d) | 720 | bb.data.setVarFlag('MACHINE', 'unexport', 1, d) |
721 | |||
722 | # Make sure DISTRO isn't exported | ||
723 | # (breaks sysvinit at least) | ||
724 | bb.data.delVarFlag('DISTRO', 'export', d) | ||
725 | bb.data.setVarFlag('DISTRO', 'unexport', 1, d) | ||
720 | 726 | ||
721 | mach_arch = bb.data.getVar('MACHINE_ARCH', d, 1) | 727 | mach_arch = bb.data.getVar('MACHINE_ARCH', d, 1) |
722 | old_arch = bb.data.getVar('PACKAGE_ARCH', d, 1) | 728 | old_arch = bb.data.getVar('PACKAGE_ARCH', d, 1) |