summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/cache.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index 38e91480bf..936829b838 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -232,7 +232,9 @@ class CoreRecipeInfo(RecipeInfoCommon):
232 232
233 # Collect files we may need for possible world-dep 233 # Collect files we may need for possible world-dep
234 # calculations 234 # calculations
235 if not self.not_world: 235 if self.not_world:
236 logger.debug(1, "EXCLUDE FROM WORLD: %s", fn)
237 else:
236 cachedata.possible_world.append(fn) 238 cachedata.possible_world.append(fn)
237 239
238 # create a collection of all targets for sanity checking 240 # create a collection of all targets for sanity checking