summaryrefslogtreecommitdiffstats
path: root/meta/classes/base.bbclass
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2011-08-23 16:51:07 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-08-23 18:32:38 -0700
commit5f6dcb2bc2c5cb157e95e97a6fc7c5197a96419a (patch)
tree7d42c0a9c788af56521771341a3ebf6d9ee91620 /meta/classes/base.bbclass
parentec63594a8ee803ca367badcd4dc5ff82019e20ac (diff)
downloadpoky-5f6dcb2bc2c5cb157e95e97a6fc7c5197a96419a.tar.gz
base.bbclass: clarify COMMERCIAL_LICENSE skip reason
Change to a proper sentence and add a reference to the COMMERCIAL_LICENSE variable so that the user knows where this can be controlled. Addresses remainder of [YOCTO #846] (From OE-Core rev: 463d1719cc627ef22089282acfe70d7fcb835419) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/base.bbclass')
-rw-r--r--meta/classes/base.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index 4332d2434e..3501f4becb 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -345,7 +345,7 @@ python () {
345 pnr = pn.replace('+', "\+") 345 pnr = pn.replace('+', "\+")
346 if commercial_license and re.search(pnr, commercial_license): 346 if commercial_license and re.search(pnr, commercial_license):
347 bb.debug(1, "Skipping %s because it's commercially licensed" % pn) 347 bb.debug(1, "Skipping %s because it's commercially licensed" % pn)
348 raise bb.parse.SkipPackage("because it requires commercial license to ship product") 348 raise bb.parse.SkipPackage("because it may require a commercial license to ship in a product (listed in COMMERCIAL_LICENSE)")
349 349
350 # If we're building a target package we need to use fakeroot (pseudo) 350 # If we're building a target package we need to use fakeroot (pseudo)
351 # in order to capture permissions, owners, groups and special files 351 # in order to capture permissions, owners, groups and special files