diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-26 11:40:12 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-26 12:15:11 +0000 |
commit | 4c487543422ae471a01a573bab44e3f6a6d2497a (patch) | |
tree | 2712a2f7d7b69338a14dda7c0252175b3b5a33f9 /meta | |
parent | 6ce4010951a291aec72a3e4997cd7c523a22ac87 (diff) | |
download | openembedded-core-contrib-4c487543422ae471a01a573bab44e3f6a6d2497a.tar.gz |
package_manager: Ensure we don't process directories twice
Processing directories twice is both pointless and introduces a race condition.
When building the list, ensure duplicates (like "all" and "noarch") are handled
correctly.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oe/package_manager.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py index 0cdf3b08579..692528db166 100644 --- a/meta/lib/oe/package_manager.py +++ b/meta/lib/oe/package_manager.py @@ -178,7 +178,9 @@ class DpkgIndexer(Indexer): arch_list = pkg_archs.split() sdk_pkg_archs = self.d.getVar('SDK_PACKAGE_ARCHS', True) if sdk_pkg_archs is not None: - arch_list += sdk_pkg_archs.split() + for a in sdk_pkg_archs.split(): + if a not in pkg_archs: + arch_list.append(a) apt_ftparchive = bb.utils.which(os.getenv('PATH'), "apt-ftparchive") gzip = bb.utils.which(os.getenv('PATH'), "gzip") |