[oe-commits] [openembedded-core] branch master updated: utils: Fix patch merging error

git at git.openembedded.org git at git.openembedded.org
Thu Aug 23 17:01:13 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

The following commit(s) were added to refs/heads/master by this push:
     new 02c8d04  utils: Fix patch merging error
02c8d04 is described below

commit 02c8d048cbab38a48f698504d0f5e912d3d24a36
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Thu Aug 23 11:54:21 2018 +0000

    utils: Fix patch merging error
    
    The previous patch has duplicate split calls and one needs to be removed
    to avoid failures
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/utils.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass
index 812129f..e12e93a 100644
--- a/meta/classes/utils.bbclass
+++ b/meta/classes/utils.bbclass
@@ -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)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list