summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/cache.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index b6f7da5920..ead8abc5d8 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -208,10 +208,10 @@ class CoreRecipeInfo(RecipeInfoCommon):
208 208
209 # Collect files we may need for possible world-dep 209 # Collect files we may need for possible world-dep
210 # calculations 210 # calculations
211 if self.not_world: 211 if not self.not_world:
212 logger.debug(1, "EXCLUDE FROM WORLD: %s", fn)
213 else:
214 cachedata.possible_world.append(fn) 212 cachedata.possible_world.append(fn)
213 #else:
214 # logger.debug(2, "EXCLUDE FROM WORLD: %s", fn)
215 215
216 # create a collection of all targets for sanity checking 216 # create a collection of all targets for sanity checking
217 # tasks, such as upstream versions, license, and tools for 217 # tasks, such as upstream versions, license, and tools for