]> code.ossystems Code Review - openembedded-core.git/commitdiff
license_class: Fix choose_lic_set into incompatible license
authorAníbal Limón <anibal.limon@linux.intel.com>
Thu, 30 Jul 2015 21:40:13 +0000 (16:40 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 31 Jul 2015 14:40:03 +0000 (15:40 +0100)
Use canonical_license when doing evaluation of license expresion since
INCOMPATIBLE_LICENSE are already canonized.

[YOCTO #8080]

Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/license.bbclass

index 224d541f759ce4f6ee94b9c04d33ee0706087dc6..32e172afc7d82b9465dea66959d5cd714a8640b2 100644 (file)
@@ -375,8 +375,8 @@ def incompatible_license(d, dont_want_licenses, package=None):
     # Handles an "or" or two license sets provided by
     # flattened_licenses(), pick one that works if possible.
     def choose_lic_set(a, b):
-        return a if all(oe.license.license_ok(lic, dont_want_licenses) \
-                for lic in a) else b
+        return a if all(oe.license.license_ok(canonical_license(d, lic), 
+                            dont_want_licenses) for lic in a) else b
 
     try:
         licenses = oe.license.flattened_licenses(license, choose_lic_set)