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:
Richard Purdie 2010-08-17 09:28:33 +01:00
parent bfaeda03be
commit 8e8316c8f0
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ def explode_dep_versions(s):
and return a dictionary of dependencies and versions.
"""
r = {}
l = s.split()
l = s.replace(",", "").split()
lastdep = None
lastver = ""
inversion = False