| Submitter | Christopher Larson |
|---|---|
| Date | Jan. 15, 2013, 8:22 p.m. |
| Message ID | <5cb12f38b2ac74ea118b58888a0c37f63917fbfa.1358281118.git.chris_larson@mentor.com> |
| Download | mbox | patch |
| Permalink | /patch/42679/ |
| State | Accepted |
| Commit | 9256361cf2e929004dcc5615b21fe3c46d9f7740 |
| Headers | show |
Comments
On Fri, Jan 18, 2013 at 10:02 PM, Saul Wold <sgw@linux.intel.com> wrote: > Can you please review this as we are closing m3 on Sunday Midnight. > Heh, looks like nobody ever really exercised the package exclusion code. I'll take a look sunday morning if need be.
Patch
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 627b943..b427a5e 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -552,9 +552,8 @@ python () { skipped_pkgs.append(pkg) else: unskipped_pkgs.append(pkg) - some_skipped = skipped_pkgs and unskipped_pkgs all_skipped = skipped_pkgs and not unskipped_pkgs - if some_skipped: + if unskipped_pkgs: for pkg in skipped_pkgs: bb.debug(1, "SKIPPING the package " + pkg + " at do_rootfs because it's " + recipe_license) d.setVar('LICENSE_EXCLUSION-' + pkg, 1)