From patchwork Tue Jan 15 20:22:46 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/6] license.bbclass: check LICENSE_pkg, not LICENSE_pn-pkg Date: Tue, 15 Jan 2013 20:22:46 -0000 From: Christopher Larson X-Patchwork-Id: 42667 Message-Id: <4ce8e013303b307a6a2fa549afda16e2897d3fc8.1358281118.git.chris_larson@mentor.com> To: openembedded-core@lists.openembedded.org Cc: Christopher Larson From: Christopher Larson Recipes define the latter, as that's what goes into the binary packages, not the former. Signed-off-by: Christopher Larson --- meta/classes/license.bbclass | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meta/classes/license.bbclass b/meta/classes/license.bbclass index 68f45f5..c8a8c63 100644 --- a/meta/classes/license.bbclass +++ b/meta/classes/license.bbclass @@ -215,8 +215,7 @@ def incompatible_license(d, dont_want_licenses, package=None): import re import oe.license from fnmatch import fnmatchcase as fnmatch - pn = d.getVar('PN', True) - license = d.getVar("LICENSE_%s-%s" % (pn, package), True) if package else None + license = d.getVar("LICENSE_%s" % package, True) if package else None if not license: license = d.getVar('LICENSE', True)