diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2017-03-03 21:11:12 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-08 11:13:46 +0000 |
commit | c2047067daadb40ff3a944f380c10b2a56b8e080 (patch) | |
tree | 8f85acae47226f0019ae65a3f7e36ca9dcc73096 /meta/classes/base.bbclass | |
parent | ef9dfc361e5e97157d05dfeaf67a3e872648d372 (diff) | |
download | openembedded-core-contrib-c2047067daadb40ff3a944f380c10b2a56b8e080.tar.gz |
base.bbclass: improve wording when skipping recipes with incompatible licenses
The previous wording, e.g.
ERROR: wget was skipped: incompatible with license GPLv3
isn't very clear and could be taken to imply that the recipe is
incompatible with its own license.
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
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 edac18b3b7a..14293f83c4f 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -533,7 +533,7 @@ python () { bb.debug(1, "INCLUDING the package " + pkg) elif all_skipped or incompatible_license(d, bad_licenses): bb.debug(1, "SKIPPING recipe %s because it's %s" % (pn, license)) - raise bb.parse.SkipPackage("incompatible with license %s" % license) + raise bb.parse.SkipPackage("it has an incompatible license: %s" % license) elif pn in whitelist: if pn in incompatwl: bb.note("INCLUDING " + pn + " as buildable despite INCOMPATIBLE_LICENSE because it has been whitelisted") |