diff options
author | Saul Wold <Saul.Wold@windriver.com> | 2022-02-22 11:23:45 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-25 12:41:24 +0000 |
commit | 92ec600cac0f427d9e8a388c57a4d8afb9d65c36 (patch) | |
tree | 02fbdb9b9b180b7b94488cbbab6cb0851748db21 /meta/classes/base.bbclass | |
parent | 440f07d211841147f2d2b6016a20b75747f45752 (diff) | |
download | poky-92ec600cac0f427d9e8a388c57a4d8afb9d65c36.tar.gz |
package: rename LICENSE_EXCLUSION
By renaming LICENSE_EXCLUSION to _exclude_incompatible, it makes it
clear that this is an internal variable.
(From OE-Core rev: 20a4cc2c2dcf345ef898abfe7735b7bc75ac0059)
Signed-off-by: Saul Wold <saul.wold@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 227f1f5a75..d0e669db00 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -623,7 +623,7 @@ python () { | |||
623 | if unskipped_pkgs: | 623 | if unskipped_pkgs: |
624 | for pkg in skipped_pkgs: | 624 | for pkg in skipped_pkgs: |
625 | bb.debug(1, "Skipping the package %s at do_rootfs because of incompatible license(s): %s" % (pkg, ' '.join(skipped_pkgs[pkg]))) | 625 | bb.debug(1, "Skipping the package %s at do_rootfs because of incompatible license(s): %s" % (pkg, ' '.join(skipped_pkgs[pkg]))) |
626 | d.setVar('LICENSE_EXCLUSION-' + pkg, ' '.join(skipped_pkgs[pkg])) | 626 | d.setVar('_exclude_incompatible-' + pkg, ' '.join(skipped_pkgs[pkg])) |
627 | for pkg in unskipped_pkgs: | 627 | for pkg in unskipped_pkgs: |
628 | bb.debug(1, "Including the package %s" % pkg) | 628 | bb.debug(1, "Including the package %s" % pkg) |
629 | else: | 629 | else: |