From 67984ba0ac2db79874541bc031f2e3e9ff7a6c32 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Thu, 18 Nov 2010 11:14:38 -0700 Subject: [PATCH] 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 --- lib/bb/cache.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/bb/cache.py b/lib/bb/cache.py index cff220a1ad0..a2ec1b7f83e 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 -- 2.47.3