mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 21:49:33 +02:00
Make invalid LICENSE fields fatal
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
@@ -438,6 +438,10 @@ python () {
|
|||||||
import exceptions
|
import exceptions
|
||||||
|
|
||||||
pn = bb.data.getVar('PN', d, 1)
|
pn = bb.data.getVar('PN', d, 1)
|
||||||
|
license = bb.data.getVar('LICENSE', d, True)
|
||||||
|
if license == "INVALID":
|
||||||
|
bb.fatal('This recipe does not have the LICENSE field set (%s)' % pn)
|
||||||
|
|
||||||
# If we're building a target package we need to use fakeroot (pseudo)
|
# If we're building a target package we need to use fakeroot (pseudo)
|
||||||
# in order to capture permissions, owners, groups and special files
|
# in order to capture permissions, owners, groups and special files
|
||||||
if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d):
|
if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d):
|
||||||
|
|||||||
@@ -170,7 +170,7 @@ DESCRIPTION_${PN} ?= "${SUMMARY_${PN}}"
|
|||||||
DESCRIPTION_${PN}-dbg ?= "${SUMMARY_${PN}-dbg}"
|
DESCRIPTION_${PN}-dbg ?= "${SUMMARY_${PN}-dbg}"
|
||||||
DESCRIPTION_${PN}-dev ?= "${SUMMARY_${PN}-dev}"
|
DESCRIPTION_${PN}-dev ?= "${SUMMARY_${PN}-dev}"
|
||||||
DESCRIPTION_${PN}-doc ?= "${SUMMARY_${PN}-doc}"
|
DESCRIPTION_${PN}-doc ?= "${SUMMARY_${PN}-doc}"
|
||||||
LICENSE = "unknown"
|
LICENSE = "INVALID"
|
||||||
MAINTAINER = "Poky Team <poky@openedhand.com>"
|
MAINTAINER = "Poky Team <poky@openedhand.com>"
|
||||||
HOMEPAGE = "unknown"
|
HOMEPAGE = "unknown"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user