summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2011-09-02 16:02:50 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-05 20:16:07 +0100
commit3157967d08266b8d1ac563ba609ac3027b60d040 (patch)
tree39bdfbba9affa758a743be3674d14f795c6e6380
parentbb3e9113074ea1254aa03a247a1a1070682df9c8 (diff)
downloadbitbake-3157967d08266b8d1ac563ba609ac3027b60d040.tar.gz
ui/crumbs/hobprefs: disable 'build toolchain with headers'
The generic meta-toolchain-sdk we are currently building when this option is enabled is likely unsuitable for the majority of images built with hob. Remove this option from the Preferences UI until such a time as we can correctly implement this feature to include the library headers for the selected packages. Addresses [YOCTO #1302] Signed-off-by: Joshua Lock <josh@linux.intel.com>
-rw-r--r--lib/bb/ui/crumbs/hobprefs.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/bb/ui/crumbs/hobprefs.py b/lib/bb/ui/crumbs/hobprefs.py
index 14d6bc7b2..8d148cde1 100644
--- a/lib/bb/ui/crumbs/hobprefs.py
+++ b/lib/bb/ui/crumbs/hobprefs.py
@@ -326,9 +326,9 @@ class HobPrefs(gtk.Dialog):
self.sdk_machine_combo.set_tooltip_text("Select the host architecture of the external machine")
self.sdk_machine_combo.show()
hbox.pack_start(self.sdk_machine_combo, expand=False, fill=False, padding=6)
- headerscheck = gtk.CheckButton("Include development headers with toolchain")
- headerscheck.show()
- headerscheck.set_active(self.build_toolchain_headers)
- headerscheck.connect("toggled", self.toggle_headers_cb)
- hbox.pack_start(headerscheck, expand=False, fill=False, padding=6)
- self.connect("response", self.prefs_response_cb)
+ # headerscheck = gtk.CheckButton("Include development headers with toolchain")
+ # headerscheck.show()
+ # headerscheck.set_active(self.build_toolchain_headers)
+ # headerscheck.connect("toggled", self.toggle_headers_cb)
+ # hbox.pack_start(headerscheck, expand=False, fill=False, padding=6)
+ # self.connect("response", self.prefs_response_cb)