diff options
author | Jason Stubbs <jstubbs@gentoo.org> | 2005-12-11 05:05:01 +0000 |
---|---|---|
committer | Jason Stubbs <jstubbs@gentoo.org> | 2005-12-11 05:05:01 +0000 |
commit | 1fe34d7aaf469689ae35dd468792e763d9c76f40 (patch) | |
tree | fd77f6f7670d74853e20075459d6b7e0a14fc8ec | |
parent | 7b500f559f8b186c6018b68299de2c8089f5a177 (diff) | |
download | portage-1fe34d7aaf469689ae35dd468792e763d9c76f40.tar.gz portage-1fe34d7aaf469689ae35dd468792e763d9c76f40.tar.bz2 portage-1fe34d7aaf469689ae35dd468792e763d9c76f40.zip |
Removed the specific check against PORTAGE_CALLER with regard to fetching.
svn path=/main/trunk/; revision=2360
-rw-r--r-- | pym/portage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py index d92b94c60..d34c45bcf 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -2777,7 +2777,7 @@ def doebuild(myebuild,mydo,myroot,mysettings,debug=0,listonly=0,fetchonly=0,clea # Only try and fetch the files if we are going to need them ... otherwise, # if user has FEATURES=noauto and they run `ebuild clean unpack compile install`, # we will try and fetch 4 times :/ - if (mydo in ["digest","fetch","unpack"] or settings["PORTAGE_CALLER"] != "ebuild" or not "noauto" in features) and \ + if (mydo in ["digest","fetch","unpack"] or "noauto" not in features) and \ not fetch(fetchme, mysettings, listonly=listonly, fetchonly=fetchonly): return 1 |