]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake cache: Add code to catch a nasty cache corruption issue to aid in tracking...
authorRichard Purdie <rpurdie@linux.intel.com>
Thu, 3 Sep 2009 21:57:26 +0000 (22:57 +0100)
committerRichard Purdie <rpurdie@linux.intel.com>
Thu, 3 Sep 2009 21:57:26 +0000 (22:57 +0100)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
bitbake/lib/bb/cache.py

index 272619386aa1307f9075104425e49b058c27ea6a..989dfc42072feb160c3b5de1d8f3b1ca37195910 100644 (file)
@@ -331,6 +331,9 @@ class Cache:
             if '__BB_DONT_CACHE' in self.depends_cache[fn] and self.depends_cache[fn]['__BB_DONT_CACHE']:
                 bb.msg.debug(2, bb.msg.domain.Cache, "Not caching %s, marked as not cacheable" % fn)
                 del cache_data[fn]
+            elif 'PV' in self.depends_cache[fn] and 'SRCREVINACTION' in self.depends_cache[fn]['PV']:
+                bb.msg.error(bb.msg.domain.Cache, "Not caching %s as it had SRCREVINACTION in PV - need to trace this bug" % fn)
+                del cache_data[fn]
 
         p = pickle.Pickler(file(self.cachefile, "wb" ), -1 )
         p.dump([cache_data, version_data])