summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/cache.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index 0734c7e771..5adb8d4a5c 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -278,6 +278,8 @@ class Cache(object):
278 fmtime = bb.parse.cached_mtime_noerror(f) 278 fmtime = bb.parse.cached_mtime_noerror(f)
279 # Check if file still exists 279 # Check if file still exists
280 if old_mtime != 0 and fmtime == 0: 280 if old_mtime != 0 and fmtime == 0:
281 logger.debug(2, "Cache: %s's dependency %s was removed",
282 fn, f)
281 self.remove(fn) 283 self.remove(fn)
282 return False 284 return False
283 285