From 81ad8aceaacda726361e953778294de20eeac24e Mon Sep 17 00:00:00 2001 From: Randy MacLeod Date: Thu, 19 Aug 2021 18:49:25 -0400 Subject: [PATCH] cargo_common: remove http_proxy Fix the test_sstate_noop_samesigs oe-selftest that produces an error like: core2-64-poky-linux/libstd-rs/1.54.0-r0.do_configure.sigdata differs: basehash changed from to Variable http_proxy value changed from '' to 'http://example.com/' by simply removing the proxy config option. This may be added back after merge to oe-core if needed and if the diffsigs check passes. Signed-off-by: Randy MacLeod Signed-off-by: Richard Purdie --- meta/classes/cargo_common.bbclass | 4 ---- 1 file changed, 4 deletions(-) diff --git a/meta/classes/cargo_common.bbclass b/meta/classes/cargo_common.bbclass index b0b039a22e..23d82aa6ab 100644 --- a/meta/classes/cargo_common.bbclass +++ b/meta/classes/cargo_common.bbclass @@ -67,10 +67,6 @@ cargo_common_do_configure () { EOF - if [ -n "${http_proxy}" ]; then - echo "proxy = \"${http_proxy}\"" >> ${CARGO_HOME}/config - fi - cat <<- EOF >> ${CARGO_HOME}/config # HOST_SYS -- 2.40.1