From 8e8316c8f07ca1af021d06ba87e23af1c1a19e2b Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 17 Aug 2010 09:28:33 +0100 Subject: bitbake/utils.py: Allow explode_dep_versions to handle the commas join_deps can introduce into strings Signed-off-by: Richard Purdie --- bitbake/lib/bb/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib/bb/utils.py') 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): and return a dictionary of dependencies and versions. """ r = {} - l = s.split() + l = s.replace(",", "").split() lastdep = None lastver = "" inversion = False -- cgit v1.2.3-54-g00ecf