summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-08-17 09:28:33 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-08-17 09:29:08 +0100
commit8e8316c8f07ca1af021d06ba87e23af1c1a19e2b (patch)
treedc55c7266208a172d891e9219a258335bf697e87 /bitbake
parentbfaeda03beeaae3ba265632f0bcfa3354e55766a (diff)
downloadpoky-8e8316c8f07ca1af021d06ba87e23af1c1a19e2b.tar.gz
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>
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