diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-08-23 11:54:21 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-08-23 17:58:59 +0100 |
commit | 00b360c75bfcdc7f2b51ebd07e294b9912de9ded (patch) | |
tree | 8bc318dee88e62ab7a1f50025c631dc630f85208 /meta/classes/utils.bbclass | |
parent | 99d40ac0920760ec3b8d2dc5ab1ceaa89096ae29 (diff) | |
download | poky-00b360c75bfcdc7f2b51ebd07e294b9912de9ded.tar.gz |
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>
Diffstat (limited to 'meta/classes/utils.bbclass')
-rw-r--r-- | meta/classes/utils.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass index 812129fda7..e12e93af24 100644 --- a/meta/classes/utils.bbclass +++ b/meta/classes/utils.bbclass | |||
@@ -362,7 +362,7 @@ def all_multilib_tune_list(vars, d): | |||
362 | values[v] = [] | 362 | values[v] = [] |
363 | 363 | ||
364 | variants = (d.getVar("MULTILIB_VARIANTS") or "").split() + [''] | 364 | variants = (d.getVar("MULTILIB_VARIANTS") or "").split() + [''] |
365 | for item in variants.split(): | 365 | for item in variants: |
366 | localdata = get_multilib_datastore(item, d) | 366 | localdata = get_multilib_datastore(item, d) |
367 | values[v].append(localdata.getVar(v)) | 367 | values[v].append(localdata.getVar(v)) |
368 | values['ml'].append(item) | 368 | values['ml'].append(item) |