[OE-core] [PATCHv3 6/8] package.bbclass: Report only the licenses that are incompatible
Peter Kjellerstedt
peter.kjellerstedt at axis.com
Wed Dec 11 16:48:18 UTC 2019
When excluding a package from being packaged due to incompatible
licenses, report the license(s) that are actually incompatible.
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt at axis.com>
---
PATCHv2: Show the names of the incompatible licenses correctly.
meta/classes/package.bbclass | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index e0d6ff6701..ef3de35961 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -1263,8 +1263,9 @@ python populate_packages () {
# Handle LICENSE_EXCLUSION
package_list = []
for pkg in packages:
- if d.getVar('LICENSE_EXCLUSION-' + pkg):
- msg = "%s has an incompatible license. Excluding from packaging." % pkg
+ licenses = d.getVar('LICENSE_EXCLUSION-' + pkg)
+ if licenses:
+ msg = "Excluding %s from packaging as it has incompatible license(s): %s" % (pkg, licenses)
package_qa_handle_error("incompatible-license", msg, d)
else:
package_list.append(pkg)
--
2.21.0
More information about the Openembedded-core
mailing list