From c6f37ce1baafbf1179d0cec2c6b19292302c98be Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Thu, 18 May 2023 10:32:24 -0500 Subject: [PATCH] skip_recipe_dynamic: remove not needed update_data call This operation is a no-op in bitbake today, so there's no need to call it. JIRA: SB-21758 Signed-off-by: Christopher Larson --- classes/skip_recipe_dynamic.bbclass | 1 - 1 file changed, 1 deletion(-) diff --git a/classes/skip_recipe_dynamic.bbclass b/classes/skip_recipe_dynamic.bbclass index 4ea32b5..4a17e71 100644 --- a/classes/skip_recipe_dynamic.bbclass +++ b/classes/skip_recipe_dynamic.bbclass @@ -29,7 +29,6 @@ python skip_recipe_dynamic_setup () { localdata.setVar('MLPREFIX', prefix + '-') override = ':virtclass-multilib-' + prefix localdata.setVar('OVERRIDES', localdata.getVar('OVERRIDES', False) + override) - bb.data.update_data(localdata) to_blacklist |= set(filter(None, localdata.getVar('SKIP_RECIPE_DYNAMIC').split()))