diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-30 20:15:40 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-30 20:46:23 +0100 |
commit | e3d7890cace71b0a57d2530bf615a58dcb46d96f (patch) | |
tree | a7fd52a7c88a8919a72579cd05e86d5079a39567 /meta/classes | |
parent | c0281fa49b734c49f8c5b5f0d33f7b611bbc282f (diff) | |
download | poky-e3d7890cace71b0a57d2530bf615a58dcb46d96f.tar.gz |
Make invalid LICENSE fields fatal
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/base.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index d2d5da04cf..dd346ee8f3 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -438,6 +438,10 @@ python () { | |||
438 | import exceptions | 438 | import exceptions |
439 | 439 | ||
440 | pn = bb.data.getVar('PN', d, 1) | 440 | pn = bb.data.getVar('PN', d, 1) |
441 | license = bb.data.getVar('LICENSE', d, True) | ||
442 | if license == "INVALID": | ||
443 | bb.fatal('This recipe does not have the LICENSE field set (%s)' % pn) | ||
444 | |||
441 | # If we're building a target package we need to use fakeroot (pseudo) | 445 | # If we're building a target package we need to use fakeroot (pseudo) |
442 | # in order to capture permissions, owners, groups and special files | 446 | # in order to capture permissions, owners, groups and special files |
443 | if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d): | 447 | if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d): |