diff options
| author | Richard Purdie <richard@ted.(none)> | 2009-09-22 19:53:34 +0100 |
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-09-24 18:57:09 +0100 |
| commit | bec200b38d96f2d766045daa36a6235151ea4e19 (patch) | |
| tree | 94512e55af2d7931a6a89a15b87e6310a7f49429 /bitbake/lib/bb/cache.py | |
| parent | 81386036806d623dc32fab04adb8ba50b2b0c3e6 (diff) | |
| download | poky-bec200b38d96f2d766045daa36a6235151ea4e19.tar.gz | |
bitbake/cache.py: Add warnings for leakage of SRCREVINACTION magic value
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/cache.py')
| -rw-r--r-- | bitbake/lib/bb/cache.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py index 989dfc4207..e91967c032 100644 --- a/bitbake/lib/bb/cache.py +++ b/bitbake/lib/bb/cache.py | |||
| @@ -332,7 +332,7 @@ class Cache: | |||
| 332 | bb.msg.debug(2, bb.msg.domain.Cache, "Not caching %s, marked as not cacheable" % fn) | 332 | bb.msg.debug(2, bb.msg.domain.Cache, "Not caching %s, marked as not cacheable" % fn) |
| 333 | del cache_data[fn] | 333 | del cache_data[fn] |
| 334 | elif 'PV' in self.depends_cache[fn] and 'SRCREVINACTION' in self.depends_cache[fn]['PV']: | 334 | elif 'PV' in self.depends_cache[fn] and 'SRCREVINACTION' in self.depends_cache[fn]['PV']: |
| 335 | bb.msg.error(bb.msg.domain.Cache, "Not caching %s as it had SRCREVINACTION in PV - need to trace this bug" % fn) | 335 | bb.msg.error(bb.msg.domain.Cache, "Not caching %s as it had SRCREVINACTION in PV. Please report this bug" % fn) |
| 336 | del cache_data[fn] | 336 | del cache_data[fn] |
| 337 | 337 | ||
| 338 | p = pickle.Pickler(file(self.cachefile, "wb" ), -1 ) | 338 | p = pickle.Pickler(file(self.cachefile, "wb" ), -1 ) |
| @@ -349,6 +349,8 @@ class Cache: | |||
| 349 | pn = self.getVar('PN', file_name, True) | 349 | pn = self.getVar('PN', file_name, True) |
| 350 | pe = self.getVar('PE', file_name, True) or "0" | 350 | pe = self.getVar('PE', file_name, True) or "0" |
| 351 | pv = self.getVar('PV', file_name, True) | 351 | pv = self.getVar('PV', file_name, True) |
| 352 | if 'SRCREVINACTION' in pv: | ||
| 353 | bb.note("Found SRCREVINACTION in PV (%s) or %s. Please report this bug." % (pv, file_name)) | ||
| 352 | pr = self.getVar('PR', file_name, True) | 354 | pr = self.getVar('PR', file_name, True) |
| 353 | dp = int(self.getVar('DEFAULT_PREFERENCE', file_name, True) or "0") | 355 | dp = int(self.getVar('DEFAULT_PREFERENCE', file_name, True) or "0") |
| 354 | depends = bb.utils.explode_deps(self.getVar("DEPENDS", file_name, True) or "") | 356 | depends = bb.utils.explode_deps(self.getVar("DEPENDS", file_name, True) or "") |
