aboutsummaryrefslogtreecommitdiffstats
path: root/bin/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2006-09-09 17:47:52 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2006-09-09 17:47:52 +0000
commitbe966771286d0d43c9bb398406109170849ba13a (patch)
tree087d2315540132ff97e1400d50c7601605fce63e /bin/bitbake
parent2bc178d17fa4f0ac52e0cc8d35f04e6a4f68fde5 (diff)
downloadbitbake-be966771286d0d43c9bb398406109170849ba13a.tar.gz
Complete conversion to use bb.msg
Diffstat (limited to 'bin/bitbake')
-rwxr-xr-xbin/bitbake6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/bitbake b/bin/bitbake
index b370a74fc..97baf9fc8 100755
--- a/bin/bitbake
+++ b/bin/bitbake
@@ -397,7 +397,7 @@ class BBCooker:
We have not seen this name -> error in
dependency handling
"""
- bb.note( "ERROR with provider: %(package)s" % vars() )
+ bb.msg.note(1, bb.msg.domain.Depends, "ERROR with provider: %(package)s" % vars() )
print >> depends_file, '"%(package)s" -> ERROR' % vars()
continue
@@ -436,14 +436,14 @@ class BBCooker:
# for the package.
if package in the_depends:
if not package in self.status.providers:
- bb.note( "ERROR with provider: %(package)s" % vars() )
+ bb.msg.note(1, bb.msg.domain.Depends, "ERROR with provider: %(package)s" % vars() )
print >> alldepends_file, '"%(package)s" -> ERROR' % vars()
continue
providers = self.status.providers[package]
elif package in the_rdepends:
if len(bb.providers.getRuntimeProviders(self.status, package)) == 0:
- bb.note( "ERROR with rprovider: %(package)s" % vars() )
+ bb.msg.note(1, bb.msg.domain.Depends, "ERROR with rprovider: %(package)s" % vars() )
print >> alldepends_file, '"%(package)s" -> ERROR [style="dashed"]' % vars()
continue