From: Richard Purdie Date: Wed, 22 Aug 2018 17:01:16 +0000 (+0000) Subject: utils: Rely on get_multilib_datastore() to get the original datastore X-Git-Tag: uninative-2.3~560 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=2ae85af480066e252fca01f3005ecac2ff37a8d4;p=openembedded-core.git utils: Rely on get_multilib_datastore() to get the original datastore get_multilib_datastore() should be able to handle the original datastore correctly now so rely upon this rather than custom coding. Signed-off-by: Richard Purdie --- diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass index 7035f9da25..812129fda7 100644 --- a/meta/classes/utils.bbclass +++ b/meta/classes/utils.bbclass @@ -361,21 +361,7 @@ def all_multilib_tune_list(vars, d): for v in vars: values[v] = [] - localdata = bb.data.createCopy(d) - overrides = localdata.getVar("OVERRIDES", False).split(":") - newoverrides = [] - for o in overrides: - if not o.startswith("virtclass-multilib-"): - newoverrides.append(o) - localdata.setVar("OVERRIDES", ":".join(newoverrides)) - localdata.setVar("MLPREFIX", "") - origdefault = localdata.getVar("DEFAULTTUNE_MULTILIB_ORIGINAL") - if origdefault: - localdata.setVar("DEFAULTTUNE", origdefault) - values['ml'] = [''] - for v in vars: - values[v].append(localdata.getVar(v)) - variants = d.getVar("MULTILIB_VARIANTS") or "" + variants = (d.getVar("MULTILIB_VARIANTS") or "").split() + [''] for item in variants.split(): localdata = get_multilib_datastore(item, d) values[v].append(localdata.getVar(v))