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-dev/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-dev/lib/bb/cache.py')
-rw-r--r-- | bitbake-dev/lib/bb/cache.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bitbake-dev/lib/bb/cache.py b/bitbake-dev/lib/bb/cache.py index 272619386a..e91967c032 100644 --- a/bitbake-dev/lib/bb/cache.py +++ b/bitbake-dev/lib/bb/cache.py | |||
@@ -331,6 +331,9 @@ class Cache: | |||
331 | if '__BB_DONT_CACHE' in self.depends_cache[fn] and self.depends_cache[fn]['__BB_DONT_CACHE']: | 331 | if '__BB_DONT_CACHE' in self.depends_cache[fn] and self.depends_cache[fn]['__BB_DONT_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']: | ||
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] | ||
334 | 337 | ||
335 | p = pickle.Pickler(file(self.cachefile, "wb" ), -1 ) | 338 | p = pickle.Pickler(file(self.cachefile, "wb" ), -1 ) |
336 | p.dump([cache_data, version_data]) | 339 | p.dump([cache_data, version_data]) |
@@ -346,6 +349,8 @@ class Cache: | |||
346 | pn = self.getVar('PN', file_name, True) | 349 | pn = self.getVar('PN', file_name, True) |
347 | pe = self.getVar('PE', file_name, True) or "0" | 350 | pe = self.getVar('PE', file_name, True) or "0" |
348 | 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)) | ||
349 | pr = self.getVar('PR', file_name, True) | 354 | pr = self.getVar('PR', file_name, True) |
350 | dp = int(self.getVar('DEFAULT_PREFERENCE', file_name, True) or "0") | 355 | dp = int(self.getVar('DEFAULT_PREFERENCE', file_name, True) or "0") |
351 | 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 "") |