summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/utils.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-01-10 12:04:18 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-01-10 13:24:04 +0000
commit8d6800bc8e0bede62d5779a5d6ea879dcf93c88f (patch)
tree0b2eb5ddc56a56627cdab9b6dc63ef97506af9fc /bitbake/lib/bb/utils.py
parentc1864191732a4d221b02f0bce58129fb29e714d2 (diff)
downloadpoky-8d6800bc8e0bede62d5779a5d6ea879dcf93c88f.tar.gz
bitbake/utils.py: Drop unused function extend_deps()
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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