diff options
-rw-r--r-- | meta/classes/base.bbclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index f7b6fb8998..627b9436c2 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -556,12 +556,12 @@ python () { | |||
556 | all_skipped = skipped_pkgs and not unskipped_pkgs | 556 | all_skipped = skipped_pkgs and not unskipped_pkgs |
557 | if some_skipped: | 557 | if some_skipped: |
558 | for pkg in skipped_pkgs: | 558 | for pkg in skipped_pkgs: |
559 | bb.note("SKIPPING the package " + pkg + " at do_rootfs because it's " + recipe_license) | 559 | bb.debug(1, "SKIPPING the package " + pkg + " at do_rootfs because it's " + recipe_license) |
560 | d.setVar('LICENSE_EXCLUSION-' + pkg, 1) | 560 | d.setVar('LICENSE_EXCLUSION-' + pkg, 1) |
561 | for pkg in unskipped_pkgs: | 561 | for pkg in unskipped_pkgs: |
562 | bb.note("INCLUDING the package " + pkg) | 562 | bb.debug(1, "INCLUDING the package " + pkg) |
563 | elif all_skipped or incompatible_license(d, bad_licenses): | 563 | elif all_skipped or incompatible_license(d, bad_licenses): |
564 | bb.note("SKIPPING recipe %s because it's %s" % (pn, recipe_license)) | 564 | bb.debug(1, "SKIPPING recipe %s because it's %s" % (pn, recipe_license)) |
565 | raise bb.parse.SkipPackage("incompatible with license %s" % recipe_license) | 565 | raise bb.parse.SkipPackage("incompatible with license %s" % recipe_license) |
566 | 566 | ||
567 | srcuri = d.getVar('SRC_URI', True) | 567 | srcuri = d.getVar('SRC_URI', True) |