diff options
-rw-r--r-- | pym/portage/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 5a0f86da2..d852efe78 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -3947,7 +3947,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): |