From f84f2b119113b076964f632e5bf4d5414b4ec7ed Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 26 Jun 2007 22:38:17 +0000 Subject: Short circuit the loop as soon as missing hashes are detected. svn path=/main/trunk/; revision=7044 --- pym/portage/manifest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/portage/manifest.py b/pym/portage/manifest.py index 5add55c81..61af21d94 100644 --- a/pym/portage/manifest.py +++ b/pym/portage/manifest.py @@ -487,12 +487,12 @@ class Manifest(object): except OSError: pass if f in distfilehashes and \ + not required_hash_types.difference(distfilehashes[f]) and \ ((assumeDistHashesSometimes and mystat is None) or \ (assumeDistHashesAlways and mystat is None) or \ (assumeDistHashesAlways and mystat is not None and \ len(distfilehashes[f]) == len(self.hashes) and \ - distfilehashes[f]["size"] == mystat.st_size)) and \ - not required_hash_types.difference(distfilehashes[f]): + distfilehashes[f]["size"] == mystat.st_size)): self.fhashdict["DIST"][f] = distfilehashes[f] else: try: -- cgit v1.2.3-1-g7c22