From c0cb486a3965fca361342adcf9b936fc0ff9263a Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Fri, 2 Sep 2011 16:02:50 -0700 Subject: 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] (Bitbake rev: 3157967d08266b8d1ac563ba609ac3027b60d040) Signed-off-by: Joshua Lock Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/crumbs/hobprefs.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'bitbake') diff --git a/bitbake/lib/bb/ui/crumbs/hobprefs.py b/bitbake/lib/bb/ui/crumbs/hobprefs.py index 14d6bc7..8d148cd 100644 --- a/bitbake/lib/bb/ui/crumbs/hobprefs.py +++ b/bitbake/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) -- cgit v1.1