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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index 5adce594f0..2b92ed01f0 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -172,7 +172,7 @@ class Cache(object):
172 # If any of configuration.data's dependencies are newer than the 172 # If any of configuration.data's dependencies are newer than the
173 # cache there isn't even any point in loading it... 173 # cache there isn't even any point in loading it...
174 newest_mtime = 0 174 newest_mtime = 0
175 deps = bb.data.getVar("__depends", data) 175 deps = bb.data.getVar("__base_depends", data)
176 176
177 old_mtimes = [old_mtime for _, old_mtime in deps] 177 old_mtimes = [old_mtime for _, old_mtime in deps]
178 old_mtimes.append(newest_mtime) 178 old_mtimes.append(newest_mtime)