summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-03-26 23:37:58 +0000
committerZac Medico <zmedico@gentoo.org>2008-03-26 23:37:58 +0000
commit49773c65c51326e757719f837a49ade14797f0d8 (patch)
tree03870a919bba8c4c68223bb99cbf515caadbcbf4 /pym
parent3dafb81bf5d225a028911f114a5121b0f9699a84 (diff)
downloadportage-49773c65c51326e757719f837a49ade14797f0d8.tar.gz
portage-49773c65c51326e757719f837a49ade14797f0d8.tar.bz2
portage-49773c65c51326e757719f837a49ade14797f0d8.zip
Bug #214879 - In fetch(), only parse the Manifest when FEATURES=strict
is enabled. svn path=/main/trunk/; revision=9512
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 16f68c749..6fe3d6a82 100644
--- 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: