diff options
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/tasklistmodel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py index 7a463a6d43..c0b0495d8c 100644 --- a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py +++ b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py | |||
@@ -132,7 +132,7 @@ class TaskListModel(gtk.ListStore): | |||
132 | if not model.get_value(it, self.COL_INC) or model.get_value(it, self.COL_TYPE) == 'image': | 132 | if not model.get_value(it, self.COL_INC) or model.get_value(it, self.COL_TYPE) == 'image': |
133 | return False | 133 | return False |
134 | name = model.get_value(it, self.COL_NAME) | 134 | name = model.get_value(it, self.COL_NAME) |
135 | if name.endswith('-native') or name.endswith('-cross'): | 135 | if name.count('-native') or name.count('-cross'): |
136 | return False | 136 | return False |
137 | else: | 137 | else: |
138 | return True | 138 | return True |