diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-03-09 16:55:37 -0700 |
---|---|---|
committer | Chris Larson <chris_larson@mentor.com> | 2010-03-19 10:42:04 -0700 |
commit | 89b7e433719f43f1c36c76cb8856d559014e99bc (patch) | |
tree | b32fb12b2530280ea8c896ffc30a84aac3cca039 /conf | |
parent | a215c2f283476776567506c2e3f969c48f7e5e3d (diff) |
Initial split of base.bbclass
Acked-by: Richard Purdie <rpurdie@linux.intel.com>
Acked-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'conf')
-rw-r--r-- | conf/bitbake.conf | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf index 0886587edc..b941b904e2 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -777,3 +777,17 @@ COMBINED_FEATURES += "${@base_ifelse( \ (base_contains('MACHINE_FEATURES', 'pcmcia', True, False, d) and \ base_contains('DISTRO_FEATURES', 'pcmcia', True, False, d))), \ 'hostap', '')}" + +# Make sure MACHINE isn't exported +# (breaks binutils at least) +MACHINE[unexport] = "1" + +# Make sure TARGET_ARCH isn't exported +# (breaks Makefiles using implicit rules, e.g. quilt, as GNU make has this +# in them, undocumented) +TARGET_ARCH[unexport] = "1" + +# Make sure DISTRO isn't exported +# (breaks sysvinit at least) +DISTRO[unexport] = "1" + |