summaryrefslogtreecommitdiffstats
path: root/lib/bb/cache.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-11-18 11:14:38 -0700
committerChris Larson <chris_larson@mentor.com>2010-11-18 11:14:41 -0700
commit67984ba0ac2db79874541bc031f2e3e9ff7a6c32 (patch)
tree0c60eaebf21b434911a9ddd0b9ce181033a73f60 /lib/bb/cache.py
parente084430446be2544dd1a6b627088f888c37cc7f0 (diff)
downloadbitbake-67984ba0ac2db79874541bc031f2e3e9ff7a6c32.tar.gz
cache: Add debug msg for a nonexistant dep file
If a recipe depends on a file, and that file is out of date, we show a message, but if that file was removed, we do not, until now. Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib/bb/cache.py')
-rw-r--r--lib/bb/cache.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index cff220a1a..a2ec1b7f8 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -278,6 +278,8 @@ class Cache(object):
fmtime = bb.parse.cached_mtime_noerror(f)
# Check if file still exists
if old_mtime != 0 and fmtime == 0:
+ logger.debug(2, "Cache: %s's dependency %s was removed",
+ fn, f)
self.remove(fn)
return False