mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
bitbake/utils.py: Allow explode_dep_versions to handle the commas join_deps can introduce into strings
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
@@ -253,7 +253,7 @@ def explode_dep_versions(s):
|
|||||||
and return a dictionary of dependencies and versions.
|
and return a dictionary of dependencies and versions.
|
||||||
"""
|
"""
|
||||||
r = {}
|
r = {}
|
||||||
l = s.split()
|
l = s.replace(",", "").split()
|
||||||
lastdep = None
|
lastdep = None
|
||||||
lastver = ""
|
lastver = ""
|
||||||
inversion = False
|
inversion = False
|
||||||
|
|||||||
Reference in New Issue
Block a user