summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cache.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-04-09 12:33:29 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-02 15:41:31 +0100
commit87f62d7c8d386df0d613da4f48c0b210902ab621 (patch)
treebfa71505321276841f07bf875e479b272547b9f3 /bitbake/lib/bb/cache.py
parentac170b0c346184bd8ba2fe1d56ccb9ea003b1a40 (diff)
downloadpoky-87f62d7c8d386df0d613da4f48c0b210902ab621.tar.gz
Ensure we always utilize the correct messaging domains
(Bitbake rev: 92a2e2e90981c0615171abe03645a772d84f6986) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/cache.py')
-rw-r--r--bitbake/lib/bb/cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index 30857864dc..106621911b 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -353,7 +353,7 @@ class Cache:
353 pe = self.getVar('PE', file_name, True) or "0" 353 pe = self.getVar('PE', file_name, True) or "0"
354 pv = self.getVar('PV', file_name, True) 354 pv = self.getVar('PV', file_name, True)
355 if 'SRCREVINACTION' in pv: 355 if 'SRCREVINACTION' in pv:
356 bb.note("Found SRCREVINACTION in PV (%s) or %s. Please report this bug." % (pv, file_name)) 356 bb.msg.note(1, bb.msg.domain.Cache, "Found SRCREVINACTION in PV (%s) or %s. Please report this bug." % (pv, file_name))
357 pr = self.getVar('PR', file_name, True) 357 pr = self.getVar('PR', file_name, True)
358 dp = int(self.getVar('DEFAULT_PREFERENCE', file_name, True) or "0") 358 dp = int(self.getVar('DEFAULT_PREFERENCE', file_name, True) or "0")
359 depends = bb.utils.explode_deps(self.getVar("DEPENDS", file_name, True) or "") 359 depends = bb.utils.explode_deps(self.getVar("DEPENDS", file_name, True) or "")