summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py
index db99058701..569aa6a8c4 100644
--- a/bitbake/lib/bb/utils.py
+++ b/bitbake/lib/bb/utils.py
@@ -253,7 +253,7 @@ def explode_dep_versions(s):
253 and return a dictionary of dependencies and versions. 253 and return a dictionary of dependencies and versions.
254 """ 254 """
255 r = {} 255 r = {}
256 l = s.split() 256 l = s.replace(",", "").split()
257 lastdep = None 257 lastdep = None
258 lastver = "" 258 lastver = ""
259 inversion = False 259 inversion = False