From 49773c65c51326e757719f837a49ade14797f0d8 Mon Sep 17 00:00:00 2001
From: Zac Medico <zmedico@gentoo.org>
Date: Wed, 26 Mar 2008 23:37:58 +0000
Subject: [PATCH] Bug #214879 - In fetch(), only parse the Manifest when
 FEATURES=strict is enabled.

svn path=/main/trunk/; revision=9512
---
 pym/portage/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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:
-- 
2.26.2