summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cache.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/cache.py')
-rw-r--r--bitbake/lib/bb/cache.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index 255c6168dd..7ec55bc1be 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -118,7 +118,8 @@ class Cache:
118 118
119 self.cacheclean = False 119 self.cacheclean = False
120 result = bb.data.getVar(var, self.data, exp) 120 result = bb.data.getVar(var, self.data, exp)
121 self.depends_cache[fn][var] = result 121 if result is not None:
122 self.depends_cache[fn][var] = result
122 return result 123 return result
123 124
124 def setData(self, virtualfn, fn, data): 125 def setData(self, virtualfn, fn, data):
@@ -219,7 +220,6 @@ class Cache:
219 virtuals += 1 220 virtuals += 1
220 return False, skipped, virtuals 221 return False, skipped, virtuals
221 222
222
223 def cacheValid(self, fn): 223 def cacheValid(self, fn):
224 """ 224 """
225 Is the cache valid for fn? 225 Is the cache valid for fn?
@@ -346,6 +346,7 @@ class Cache:
346 346
347 p = pickle.Pickler(file(self.cachefile, "wb" ), -1 ) 347 p = pickle.Pickler(file(self.cachefile, "wb" ), -1 )
348 p.dump([cache_data, version_data]) 348 p.dump([cache_data, version_data])
349 del self.depends_cache
349 350
350 def mtime(self, cachefile): 351 def mtime(self, cachefile):
351 return bb.parse.cached_mtime_noerror(cachefile) 352 return bb.parse.cached_mtime_noerror(cachefile)