diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-03-04 23:02:04 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-03-04 23:02:04 +0000 |
commit | 81f758fd6f07af44b2111ef499e184528d11a3d0 (patch) | |
tree | 435daca9137124efa5041e811ca9b1682c30f74f | |
parent | f7744bb6a6361a1cd985ba103cc66da16b016407 (diff) | |
download | portage-81f758fd6f07af44b2111ef499e184528d11a3d0.tar.gz portage-81f758fd6f07af44b2111ef499e184528d11a3d0.tar.bz2 portage-81f758fd6f07af44b2111ef499e184528d11a3d0.zip |
Bug #261082 - Prefer remote package instances whenever --getbinpkg is enabled
(previously local instances were preferred unless --getbinpkgonly was enabled).
svn path=/main/trunk/; revision=12749
-rw-r--r-- | pym/portage/dbapi/bintree.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/dbapi/bintree.py b/pym/portage/dbapi/bintree.py index 9bd8eb92e..80d7765de 100644 --- a/pym/portage/dbapi/bintree.py +++ b/pym/portage/dbapi/bintree.py @@ -703,7 +703,7 @@ class binarytree(object): for cpv in self._remotepkgs: self.dbapi.cpv_inject(cpv) self.populated = 1 - if getbinpkgsonly: + if True: # Remote package instances override local package # if they are not identical. hash_names = ["SIZE"] + self._pkgindex_hashes |