summaryrefslogtreecommitdiffstats
path: root/lib/bb/cache.py
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2014-06-06 10:35:06 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-06-11 13:17:24 +0100
commitcf33d4bfc53ae8dc6353fa295e1acd789d4fc2d2 (patch)
treeb99027a96d1903e93716c2819ccbea0d3f0f024f /lib/bb/cache.py
parent38f77a43d16e202d1f40632b27cb70dd20d02a5e (diff)
downloadopenembedded-core-contrib-cf33d4bfc53ae8dc6353fa295e1acd789d4fc2d2.tar.gz
cache.py: print debug info when EXCLUDE_FROM_WORLD
This gives us an easy way to find out which recipes have been excluded from world when there are many layers. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/cache.py')
-rw-r--r--lib/bb/cache.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index 38e91480bf..936829b838 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -232,7 +232,9 @@ class CoreRecipeInfo(RecipeInfoCommon):
# Collect files we may need for possible world-dep
# calculations
- if not self.not_world:
+ if self.not_world:
+ logger.debug(1, "EXCLUDE FROM WORLD: %s", fn)
+ else:
cachedata.possible_world.append(fn)
# create a collection of all targets for sanity checking