[oe-commits] [openembedded-core] 12/28: base.bbclass: improve wording when skipping recipes with incompatible licenses

git at git.openembedded.org git at git.openembedded.org
Tue Mar 7 22:15:20 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit e4319814ed5728b6a14a083186a1c6c96acd7a1e
Author: Andre McCurdy <armccurdy at gmail.com>
AuthorDate: Fri Mar 3 21:11:12 2017 -0800

    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 at gmail.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/classes/base.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index edac18b..14293f8 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")

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list