diff options
author | Joshua Lock <josh@linux.intel.com> | 2011-08-18 17:46:10 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-23 10:00:34 -0700 |
commit | ba6366082185fb61eeec0c74a0464b8d2a81e244 (patch) | |
tree | aba92ebe9bd36a949074193c433d9917e53457da /bitbake | |
parent | 17bd3a0c6b222c731e88a8dd5897c589ffb32298 (diff) | |
download | poky-ba6366082185fb61eeec0c74a0464b8d2a81e244.tar.gz |
bb/ui/crumbs/hobprefs: fix setting IMAGE_FSYTPES
We were setting the value as a list when a string is expected
(Bitbake rev: fc3bb3a4f04f64c6d47c7bf040b7522e9204a458)
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/hobprefs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobprefs.py b/bitbake/lib/bb/ui/crumbs/hobprefs.py index 014087b7f4..ee42e58453 100644 --- a/bitbake/lib/bb/ui/crumbs/hobprefs.py +++ b/bitbake/lib/bb/ui/crumbs/hobprefs.py | |||
@@ -38,7 +38,7 @@ class HobPrefs(gtk.Dialog): | |||
38 | else: | 38 | else: |
39 | self.selected_image_types = handler.remove_image_output_type(ot) | 39 | self.selected_image_types = handler.remove_image_output_type(ot) |
40 | 40 | ||
41 | self.configurator.setLocalConfVar('IMAGE_FSTYPES', "%s" % self.selected_image_types) | 41 | self.configurator.setLocalConfVar('IMAGE_FSTYPES', "%s" % " ".join(self.selected_image_types).lstrip(" ")) |
42 | 42 | ||
43 | def sdk_machine_combo_changed_cb(self, combo, handler): | 43 | def sdk_machine_combo_changed_cb(self, combo, handler): |
44 | sdk_mach = combo.get_active_text() | 44 | sdk_mach = combo.get_active_text() |