From ab5628f07e55e0d854868acd0f6f1f6a91feb209 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Fri, 21 Aug 2020 13:59:44 -0700 Subject: [PATCH] tcmode-external-oe-sdk: stop setting EXTERNAL_TOOLCHAIN_SETUP_SCRIPT As the script checks for this and obeys it, setting it resulted in the base configuration script also being used for all multilibs in preference to the search, so stop setting it. Signed-off-by: Christopher Larson --- conf/distro/include/tcmode-external-oe-sdk.inc | 2 -- 1 file changed, 2 deletions(-) diff --git a/conf/distro/include/tcmode-external-oe-sdk.inc b/conf/distro/include/tcmode-external-oe-sdk.inc index 0d80696..b85bb14 100644 --- a/conf/distro/include/tcmode-external-oe-sdk.inc +++ b/conf/distro/include/tcmode-external-oe-sdk.inc @@ -47,8 +47,6 @@ def setup_external_vars(external_toolchain, localdata, d): else: suffix = '' - d.setVar('EXTERNAL_TOOLCHAIN_SETUP_SCRIPT' + suffix, str(setup)) - for var in localdata.getVar('EXTERNAL_SETUP_SCRIPT_VARS').split(): d.setVar('EXTERNAL_' + var + suffix, env.get(var) or '')