diff options
author | Irina Patru <irina.patru@intel.com> | 2014-01-23 11:49:43 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-28 00:52:57 +0000 |
commit | 9a46332aa0a433f5713d750f225a0361879a5339 (patch) | |
tree | 8750f0084f58c1be0053c3e5fb62defc503812f3 /bitbake | |
parent | 914e50e5ea3c13e90dd2a8198fb6358715b976b4 (diff) | |
download | poky-9a46332aa0a433f5713d750f225a0361879a5339.tar.gz |
bitbake: hob: No need for enable_proxy and same_proxy in conf file
Hob doesn't read these variable from file and bitbake doesn't use them,
so they shouldn't be set in conf file.
(Bitbake rev: a8c9df86b96e27dc49028c2da42034d13988960c)
Signed-off-by: Irina Patru <irina.patru@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-x | bitbake/lib/bb/ui/crumbs/builder.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py index 7bc3227509..1e26d44f48 100755 --- a/bitbake/lib/bb/ui/crumbs/builder.py +++ b/bitbake/lib/bb/ui/crumbs/builder.py | |||
@@ -227,8 +227,6 @@ class Configuration: | |||
227 | handler.set_var_in_file("DEPENDS", self.selected_recipes, "local.conf") | 227 | handler.set_var_in_file("DEPENDS", self.selected_recipes, "local.conf") |
228 | handler.set_var_in_file("IMAGE_INSTALL", self.user_selected_packages, "local.conf") | 228 | handler.set_var_in_file("IMAGE_INSTALL", self.user_selected_packages, "local.conf") |
229 | # proxy | 229 | # proxy |
230 | handler.set_var_in_file("enable_proxy", self.enable_proxy, "local.conf") | ||
231 | handler.set_var_in_file("use_same_proxy", self.same_proxy, "local.conf") | ||
232 | if self.enable_proxy == True: | 230 | if self.enable_proxy == True: |
233 | handler.set_var_in_file("http_proxy", self.combine_proxy("http"), "local.conf") | 231 | handler.set_var_in_file("http_proxy", self.combine_proxy("http"), "local.conf") |
234 | handler.set_var_in_file("https_proxy", self.combine_proxy("https"), "local.conf") | 232 | handler.set_var_in_file("https_proxy", self.combine_proxy("https"), "local.conf") |