projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3dafb81
)
Bug #214879 - In fetch(), only parse the Manifest when FEATURES=strict
author
Zac Medico
<zmedico@gentoo.org>
Wed, 26 Mar 2008 23:37:58 +0000
(23:37 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Wed, 26 Mar 2008 23:37:58 +0000
(23:37 -0000)
is enabled.
svn path=/main/trunk/; revision=9512
pym/portage/__init__.py
patch
|
blob
|
history
diff --git
a/pym/portage/__init__.py
b/pym/portage/__init__.py
index 16f68c749b43197f00b8194172d394ba535f740d..6fe3d6a826668eb2191118064e80b4a76e2f59e3 100644
(file)
--- a/
pym/portage/__init__.py
+++ b/
pym/portage/__init__.py
@@
-3098,7
+3098,7
@@
def fetch(myuris, mysettings, listonly=0, fetchonly=0, locks_in_subdir=".locks",
mymirrors += [x.rstrip("/") for x in mysettings["GENTOO_MIRRORS"].split() if x]
pkgdir = mysettings.get("O")
- if pkgdir:
+ if pkgdir
and "strict" in features
:
mydigests = Manifest(
pkgdir, mysettings["DISTDIR"]).getTypeDigests("DIST")
else: