diff options
author | Bogdan Marinescu <bogdan.a.marinescu@intel.com> | 2012-09-05 13:11:25 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-07 12:10:43 +0100 |
commit | e8d87846e3d9ce568cc0280bad84174e151a6610 (patch) | |
tree | 97030998a7778ba921beb3b7e3c5962a842582ae /bitbake | |
parent | e2b0eaef938eb11db44db3e3dfc182ffd4bba186 (diff) | |
download | poky-e8d87846e3d9ce568cc0280bad84174e151a6610.tar.gz |
bitbake: crumbs/hig: Save toolchain in settings
Toolchain was not saved in the settings dialog ("Output" tab).
[YOCTO #2695]
(Bitbake rev: f8924b75d6ff7f093d73f4e3c0953e349960d5ff)
Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/hig.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hig.py b/bitbake/lib/bb/ui/crumbs/hig.py index 6b573a884e..3695fa0d54 100644 --- a/bitbake/lib/bb/ui/crumbs/hig.py +++ b/bitbake/lib/bb/ui/crumbs/hig.py | |||
@@ -741,6 +741,7 @@ class AdvancedSettingDialog (CrumbsDialog): | |||
741 | self.configuration.split_proxy("git", self.git_proxy.get_text() + ":" + self.git_proxy_port.get_text()) | 741 | self.configuration.split_proxy("git", self.git_proxy.get_text() + ":" + self.git_proxy_port.get_text()) |
742 | self.configuration.split_proxy("cvs", self.cvs_proxy.get_text() + ":" + self.cvs_proxy_port.get_text()) | 742 | self.configuration.split_proxy("cvs", self.cvs_proxy.get_text() + ":" + self.cvs_proxy_port.get_text()) |
743 | 743 | ||
744 | self.configuration.curr_sdk_machine = self.sdk_machine_combo.get_active_text() | ||
744 | md5 = self.config_md5() | 745 | md5 = self.config_md5() |
745 | self.settings_changed = (self.md5 != md5) | 746 | self.settings_changed = (self.md5 != md5) |
746 | 747 | ||