1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 12:29:55 +00:00

base: Don't print LICENSE warning for non-recipe context

Now bitbake is executing anonymous python fragments in bitbake -e,
ensure we don't show the error in that context (where PN would be
unchanged from default).

(From OE-Core rev: 79240b3af32c7fa44751752e9e8f2ff832439643)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2018-03-02 18:18:04 +00:00
parent 2bce61ee41
commit 1a992fd418
+1 -1
View File
@@ -456,7 +456,7 @@ python () {
pn = d.getVar('PN')
license = d.getVar('LICENSE')
if license == "INVALID":
if license == "INVALID" and pn != "defaultpkgname":
bb.fatal('This recipe does not have the LICENSE field set (%s)' % pn)
if bb.data.inherits_class('license', d):