summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-25 16:31:40 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-25 16:34:38 +0000
commit2069a29a8256bc94e6c1137da78d7b129a8cd4e8 (patch)
treefbd4529c9f2139ef0bd132804dc7b6f5c74491ef /bitbake
parent0d0279a88141616e08515916f4a0e6d9a3e326dd (diff)
downloadpoky-2069a29a8256bc94e6c1137da78d7b129a8cd4e8.tar.gz
bitbake/utils.py: Allow join_deps to return a list that isn't comman separated
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/utils.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py
index b2f8bb6f89..44419d8f2a 100644
--- a/bitbake/lib/bb/utils.py
+++ b/bitbake/lib/bb/utils.py
@@ -279,7 +279,7 @@ def explode_dep_versions(s):
279 279
280 return r 280 return r
281 281
282def join_deps(deps): 282def join_deps(deps, commasep=True):
283 """ 283 """
284 Take the result from explode_dep_versions and generate a dependency string 284 Take the result from explode_dep_versions and generate a dependency string
285 """ 285 """
@@ -289,7 +289,10 @@ def join_deps(deps):
289 result.append(dep + " (" + deps[dep] + ")") 289 result.append(dep + " (" + deps[dep] + ")")
290 else: 290 else:
291 result.append(dep) 291 result.append(dep)
292 return ", ".join(result) 292 if commasep:
293 return ", ".join(result)
294 else:
295 return " ".join(result)
293 296
294def _print_trace(body, line): 297def _print_trace(body, line):
295 """ 298 """