diff options
| -rw-r--r-- | bitbake/lib/bb/ui/crumbs/tasklistmodel.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py index 4da3e1eb40..203b6284ac 100644 --- a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py +++ b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py | |||
| @@ -457,11 +457,8 @@ class TaskListModel(gtk.ListStore): | |||
| 457 | # resultant image, so filter cross and native recipes | 457 | # resultant image, so filter cross and native recipes |
| 458 | dep_included = self.contents_includes_name(dep) | 458 | dep_included = self.contents_includes_name(dep) |
| 459 | path = self.find_path_for_item(dep) | 459 | path = self.find_path_for_item(dep) |
| 460 | if not dep_included and not dep.endswith("-native") and not dep.endswith("-cross"): | 460 | if not dep_included and path: |
| 461 | if path: | 461 | self.include_item(path, name, image_contents) |
| 462 | self.include_item(path, name, image_contents) | ||
| 463 | else: | ||
| 464 | pass | ||
| 465 | # Set brought in by for any no longer orphan packages | 462 | # Set brought in by for any no longer orphan packages |
| 466 | elif dep_included and path: | 463 | elif dep_included and path: |
| 467 | if not self[path][self.COL_BINB]: | 464 | if not self[path][self.COL_BINB]: |
