summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pym/portage/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 632ed71c..5d049990 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -3937,7 +3937,9 @@ def fetch(myuris, mysettings, listonly=0, fetchonly=0, locks_in_subdir=".locks",
mysize = 0
if (size - mysize + vfs_stat.f_bsize) >= \
(vfs_stat.f_bsize * vfs_stat.f_bavail):
- if 'userfetch' in features:
+ if secpass < 2:
+ has_space = False
+ elif userfetch:
has_space = False
elif (size - mysize + vfs_stat.f_bfree) >= \
(vfs_stat.f_bfree * vfs_stat.f_bavail):