diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-12-31 09:24:59 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-12-31 09:51:18 +0000 |
commit | 278aad440eea74f2cb1eade5a13d8add804c16c5 (patch) | |
tree | 2e46c7409a1e323df5ec0efa840fa99094ab7ca2 | |
parent | 33f67ee2fc0e5bce5639d75e618371df6fb1b002 (diff) | |
download | poky-278aad440eea74f2cb1eade5a13d8add804c16c5.tar.gz |
base.bbclass: Correct bb.debug parameters
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-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 c60048bd50..f726b3c090 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -419,7 +419,7 @@ python () { | |||
419 | commercial_license = bb.data.getVar('COMMERCIAL_LICENSE', d, 1) | 419 | commercial_license = bb.data.getVar('COMMERCIAL_LICENSE', d, 1) |
420 | import re | 420 | import re |
421 | if commercial_license and re.search(pn, commercial_license): | 421 | if commercial_license and re.search(pn, commercial_license): |
422 | bb.debug("Skipping %s because it's commercially licensed" % pn) | 422 | bb.debug(1, "Skipping %s because it's commercially licensed" % pn) |
423 | raise bb.parse.SkipPackage("because it requires commercial license to ship product") | 423 | raise bb.parse.SkipPackage("because it requires commercial license to ship product") |
424 | 424 | ||
425 | # If we're building a target package we need to use fakeroot (pseudo) | 425 | # If we're building a target package we need to use fakeroot (pseudo) |