diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2014-06-06 10:35:06 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-12 17:47:59 +0100 |
commit | 065fb5dd565f37b56f69a91b4f7fa816b01996b9 (patch) | |
tree | d41a9b612a4e8e304f7ad3756abec3b607903b3a /bitbake/lib/bb | |
parent | dd50dfe27ea5be5bfc9f1b4f1ce4f1bf421498b6 (diff) | |
download | poky-065fb5dd565f37b56f69a91b4f7fa816b01996b9.tar.gz |
bitbake: 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.
(Bitbake rev: cf33d4bfc53ae8dc6353fa295e1acd789d4fc2d2)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/cache.py | 4 |
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 |