mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
utils: Fix patch merging error
The previous patch has duplicate split calls and one needs to be removed to avoid failures (From OE-Core rev: 02c8d048cbab38a48f698504d0f5e912d3d24a36) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -362,7 +362,7 @@ def all_multilib_tune_list(vars, d):
|
||||
values[v] = []
|
||||
|
||||
variants = (d.getVar("MULTILIB_VARIANTS") or "").split() + ['']
|
||||
for item in variants.split():
|
||||
for item in variants:
|
||||
localdata = get_multilib_datastore(item, d)
|
||||
values[v].append(localdata.getVar(v))
|
||||
values['ml'].append(item)
|
||||
|
||||
Reference in New Issue
Block a user