diff options
author | Saul Wold <sgw@linux.intel.com> | 2011-09-16 15:30:32 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-19 04:52:48 +0100 |
commit | f48f4562b4b4c3185e1fbd57e70117c53b4346a1 (patch) | |
tree | f751b8ea0816f4ff196fcf8f95f025ca473069f5 /meta/classes/base.bbclass | |
parent | 92518c5017945d29099b029a7c2bf80261287d6e (diff) | |
download | poky-f48f4562b4b4c3185e1fbd57e70117c53b4346a1.tar.gz |
base.bbclass: add crosssdk items to INCOMPATIBLE_LICENSE exclude list
(From OE-Core rev: 1fbb665ef20b7a2477ec4812a610f2b69a870bb1)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/base.bbclass')
-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 4ca04e235f..918d859c93 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -385,7 +385,7 @@ python () { | |||
385 | 385 | ||
386 | 386 | ||
387 | dont_want_license = bb.data.getVar('INCOMPATIBLE_LICENSE', d, 1) | 387 | dont_want_license = bb.data.getVar('INCOMPATIBLE_LICENSE', d, 1) |
388 | if dont_want_license and not pn.endswith("-native") and not pn.endswith("-cross") and not pn.endswith("-cross-initial") and not pn.endswith("-cross-intermediate"): | 388 | if dont_want_license and not pn.endswith("-native") and not pn.endswith("-cross") and not pn.endswith("-cross-initial") and not pn.endswith("-cross-intermediate") and not pn.endswith("-crosssdk-intermediate") and not pn.endswith("-crosssdk") and not pn.endswith("-crosssdk-initial"): |
389 | hosttools_whitelist = (bb.data.getVar('HOSTTOOLS_WHITELIST_%s' % dont_want_license, d, 1) or "").split() | 389 | hosttools_whitelist = (bb.data.getVar('HOSTTOOLS_WHITELIST_%s' % dont_want_license, d, 1) or "").split() |
390 | lgplv2_whitelist = (bb.data.getVar('LGPLv2_WHITELIST_%s' % dont_want_license, d, 1) or "").split() | 390 | lgplv2_whitelist = (bb.data.getVar('LGPLv2_WHITELIST_%s' % dont_want_license, d, 1) or "").split() |
391 | dont_want_whitelist = (bb.data.getVar('WHITELIST_%s' % dont_want_license, d, 1) or "").split() | 391 | dont_want_whitelist = (bb.data.getVar('WHITELIST_%s' % dont_want_license, d, 1) or "").split() |