diff options
author | Cristiana Voicu <cristiana.voicu@intel.com> | 2012-09-27 17:12:59 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-27 16:45:27 +0100 |
commit | bc90dedc3a0ad0862ba09562a530dbdd2554d7d0 (patch) | |
tree | fe4ea73f64d9c39b7b8db599ca25f9ca1fb218c2 | |
parent | faaa0653c2a24fcd419d8a79c33086611ea36b89 (diff) | |
download | poky-bc90dedc3a0ad0862ba09562a530dbdd2554d7d0.tar.gz |
bitbake: hob/recipeselectionpage: recipes should not be shown brought in by themselves
[YOCTO #3107]
(Bitbake rev: 2cc5f517224cee8e2dd2b045a277423ce66ec886)
Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/hoblistmodel.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py index 15894d3781..fe58adfbc4 100644 --- a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py +++ b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py | |||
@@ -672,6 +672,10 @@ class RecipeListModel(gtk.ListStore): | |||
672 | self[dep_path][self.COL_BINB] = ', '.join(dep_bin).lstrip(', ') | 672 | self[dep_path][self.COL_BINB] = ', '.join(dep_bin).lstrip(', ') |
673 | elif not dep_included: | 673 | elif not dep_included: |
674 | self.include_item(dep_path, binb=item_name, image_contents=image_contents) | 674 | self.include_item(dep_path, binb=item_name, image_contents=image_contents) |
675 | dep_bin = self[item_path][self.COL_BINB].split(', ') | ||
676 | if self[item_path][self.COL_NAME] in dep_bin: | ||
677 | dep_bin.remove(self[item_path][self.COL_NAME]) | ||
678 | self[item_path][self.COL_BINB] = ', '.join(dep_bin).lstrip(', ') | ||
675 | 679 | ||
676 | def exclude_item(self, item_path): | 680 | def exclude_item(self, item_path): |
677 | if not self.path_included(item_path): | 681 | if not self.path_included(item_path): |