diff options
author | Jessica Zhang <jessica.zhang@intel.com> | 2011-07-25 11:17:02 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-26 20:15:49 +0100 |
commit | 49c01a89b5183798f4bfa9079d68811dd40ca82d (patch) | |
tree | 0fa1ffa526b5efc8b938c3c64545738bd41d3ec2 | |
parent | 30a2ac4882b214a6572c36e0369a4701e2aaeb84 (diff) | |
download | poky-49c01a89b5183798f4bfa9079d68811dd40ca82d.tar.gz |
ui/crumbs/tasklistmodel: fix loading a saved recipe
use the correct variable userpkgs instead of packages during reload saved
bb file that contains user customization.
Fixes [YOCTO #1289]
(Bitbake rev: 2650be190afc05f9472aca8b11af99205a342838)
Signed-off-by: Jessica Zhang <jessica.zhang@intel.com>
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 b9fde9d89b..ee6ebf8754 100644 --- a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py +++ b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py | |||
@@ -275,7 +275,7 @@ class TaskListModel(gtk.ListStore): | |||
275 | it = self.images.iter_next(it) | 275 | it = self.images.iter_next(it) |
276 | 276 | ||
277 | # Mark all of the additional packages for inclusion | 277 | # Mark all of the additional packages for inclusion |
278 | packages = rep.packages.split(" ") | 278 | packages = rep.userpkgs.split(" ") |
279 | it = self.get_iter_first() | 279 | it = self.get_iter_first() |
280 | while it: | 280 | while it: |
281 | path = self.get_path(it) | 281 | path = self.get_path(it) |