summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-07-10 04:41:27 +0000
committerZac Medico <zmedico@gentoo.org>2008-07-10 04:41:27 +0000
commit906548f973148ef3b6df42d51df8f43d023bcf10 (patch)
tree8b9db64b22e9422276e3c3ed0e7732e102529fb2 /pym
parent15a5d41a961628db7e7e3f9a8b8214ea3111a880 (diff)
downloadportage-906548f973148ef3b6df42d51df8f43d023bcf10.tar.gz
portage-906548f973148ef3b6df42d51df8f43d023bcf10.tar.bz2
portage-906548f973148ef3b6df42d51df8f43d023bcf10.zip
Make digestcheck() skip the "checking ebuild checksums" part when fetching in
the background. svn path=/main/trunk/; revision=11009
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 306d85b3b..bd800b4e2 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -4125,7 +4125,7 @@ def digestcheck(myfiles, mysettings, strict=0, justmanifest=0):
eout = portage.output.EOutput()
eout.quiet = mysettings.get("PORTAGE_QUIET", None) == "1"
try:
- if strict:
+ if strict and "PORTAGE_PARALLEL_FETCHONLY" not in mysettings:
eout.ebegin("checking ebuild checksums ;-)")
mf.checkTypeHashes("EBUILD")
eout.eend(0)