diff options
-rw-r--r-- | meta/classes/base.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index d711ae477e..9bd5499a10 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -513,7 +513,8 @@ python () { | |||
513 | if unskipped_pkgs: | 513 | if unskipped_pkgs: |
514 | for pkg in skipped_pkgs: | 514 | for pkg in skipped_pkgs: |
515 | bb.debug(1, "SKIPPING the package " + pkg + " at do_rootfs because it's " + recipe_license) | 515 | bb.debug(1, "SKIPPING the package " + pkg + " at do_rootfs because it's " + recipe_license) |
516 | d.setVar('LICENSE_EXCLUSION-' + pkg, 1) | 516 | mlprefix = d.getVar('MLPREFIX', True) |
517 | d.setVar('LICENSE_EXCLUSION-' + mlprefix + pkg, 1) | ||
517 | for pkg in unskipped_pkgs: | 518 | for pkg in unskipped_pkgs: |
518 | bb.debug(1, "INCLUDING the package " + pkg) | 519 | bb.debug(1, "INCLUDING the package " + pkg) |
519 | elif all_skipped or incompatible_license(d, bad_licenses): | 520 | elif all_skipped or incompatible_license(d, bad_licenses): |