bitbake/utils.py: Drop unused function extend_deps()

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2011-01-10 12:04:18 +00:00
parent c186419173
commit 8d6800bc8e
1 changed files with 0 additions and 11 deletions

View File

@ -291,17 +291,6 @@ def join_deps(deps):
result.append(dep)
return ", ".join(result)
def extend_deps(dest, src):
"""
Extend the results from explode_dep_versions by appending all of the items
in the second list, avoiding duplicates.
"""
for dep in src:
if dep not in dest:
dest[dep] = src[dep]
elif dest[dep] != src[dep]:
dest[dep] = src[dep]
def _print_trace(body, line):
"""
Print the Environment of a Text Body