summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/utils.py')
-rw-r--r--bitbake/lib/bb/utils.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py
index f04f4abe32..a4902931c6 100644
--- a/bitbake/lib/bb/utils.py
+++ b/bitbake/lib/bb/utils.py
@@ -291,17 +291,6 @@ def join_deps(deps):
291 result.append(dep) 291 result.append(dep)
292 return ", ".join(result) 292 return ", ".join(result)
293 293
294def extend_deps(dest, src):
295 """
296 Extend the results from explode_dep_versions by appending all of the items
297 in the second list, avoiding duplicates.
298 """
299 for dep in src:
300 if dep not in dest:
301 dest[dep] = src[dep]
302 elif dest[dep] != src[dep]:
303 dest[dep] = src[dep]
304
305def _print_trace(body, line): 294def _print_trace(body, line):
306 """ 295 """
307 Print the Environment of a Text Body 296 Print the Environment of a Text Body