From 814c80f53c29802153120f95dfdb5750e3fb09cc Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Thu, 18 Nov 2010 11:14:38 -0700 Subject: 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. (Bitbake rev: 67984ba0ac2db79874541bc031f2e3e9ff7a6c32) Signed-off-by: Chris Larson Signed-off-by: Richard Purdie --- bitbake/lib/bb/cache.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bitbake/lib/bb/cache.py') 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): 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 -- cgit v1.2.3-54-g00ecf