diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-09 16:25:03 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-09 16:25:03 +0100 |
commit | a743e823bcadefd21ef8e4127a26b42e9fb33fd3 (patch) | |
tree | a8237d5e0e3e939bb9d14dd3f475097312273de7 /meta/classes | |
parent | b8ce8c72d18b4de703cfaca57afc0325e1e6c71b (diff) | |
download | poky-a743e823bcadefd21ef8e4127a26b42e9fb33fd3.tar.gz |
base.bbclass: Fix spelling mistakes and change log level
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 3c3c779dba..aee75297eb 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -469,7 +469,7 @@ python () { | |||
469 | commercial_license = bb.data.getVar('COMMERCIAL_LICENSE', d, 1) | 469 | commercial_license = bb.data.getVar('COMMERCIAL_LICENSE', d, 1) |
470 | import re | 470 | import re |
471 | if commercial_license and re.search(pn, commercial_license): | 471 | if commercial_license and re.search(pn, commercial_license): |
472 | bb.note("SKIPPING %s because it's Commerciallly Licensed" % pn) | 472 | bb.debug("Skipping %s because it's commercially licensed" % pn) |
473 | raise bb.parse.SkipPackage("because it requires commercial license to ship product") | 473 | raise bb.parse.SkipPackage("because it requires commercial license to ship product") |
474 | 474 | ||
475 | # If we're building a target package we need to use fakeroot (pseudo) | 475 | # If we're building a target package we need to use fakeroot (pseudo) |