diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-10 12:04:18 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-10 13:24:04 +0000 |
commit | 8d6800bc8e0bede62d5779a5d6ea879dcf93c88f (patch) | |
tree | 0b2eb5ddc56a56627cdab9b6dc63ef97506af9fc | |
parent | c1864191732a4d221b02f0bce58129fb29e714d2 (diff) | |
download | openembedded-core-8d6800bc8e0bede62d5779a5d6ea879dcf93c88f.tar.gz openembedded-core-8d6800bc8e0bede62d5779a5d6ea879dcf93c88f.tar.bz2 openembedded-core-8d6800bc8e0bede62d5779a5d6ea879dcf93c88f.tar.xz openembedded-core-8d6800bc8e0bede62d5779a5d6ea879dcf93c88f.zip |
bitbake/utils.py: Drop unused function extend_deps()
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/utils.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index f04f4abe3..a4902931c 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py @@ -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 |