summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)