]> code.ossystems Code Review - openembedded-core.git/commitdiff
base.bbclass: add crosssdk items to INCOMPATIBLE_LICENSE exclude list
authorSaul Wold <sgw@linux.intel.com>
Fri, 16 Sep 2011 22:30:32 +0000 (15:30 -0700)
committerSaul Wold <sgw@linux.intel.com>
Fri, 16 Sep 2011 22:37:53 +0000 (15:37 -0700)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
meta/classes/base.bbclass

index 4ca04e235f304468de1dbe603b677aee0b41a01f..918d859c93d048698293d27b06c514224391b3aa 100644 (file)
@@ -385,7 +385,7 @@ python () {
 
 
         dont_want_license = bb.data.getVar('INCOMPATIBLE_LICENSE', d, 1)
-        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"):
+        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"):
             hosttools_whitelist = (bb.data.getVar('HOSTTOOLS_WHITELIST_%s' % dont_want_license, d, 1) or "").split()
             lgplv2_whitelist = (bb.data.getVar('LGPLv2_WHITELIST_%s' % dont_want_license, d, 1) or "").split()
             dont_want_whitelist = (bb.data.getVar('WHITELIST_%s' % dont_want_license, d, 1) or "").split()