summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorBrian Harring <ferringb@gentoo.org>2005-12-26 07:40:45 +0000
committerBrian Harring <ferringb@gentoo.org>2005-12-26 07:40:45 +0000
commitbe9ff7944ea248d94983d9d87031a9e8980064ff (patch)
tree08ca0f4d8c523279dad129a6f6b60863f0abb81a /pym
parentc27bb493bcaa01f430da570a94dd845b3bab0f1b (diff)
downloadportage-be9ff7944ea248d94983d9d87031a9e8980064ff.tar.gz
portage-be9ff7944ea248d94983d9d87031a9e8980064ff.tar.bz2
portage-be9ff7944ea248d94983d9d87031a9e8980064ff.zip
final cleanups for indirect distfiles, exempt fetch phase also.
svn path=/main/trunk/; revision=2478
Diffstat (limited to 'pym')
-rw-r--r--pym/portage.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 0e9f5ff6c..25dc4d850 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -2794,8 +2794,8 @@ def doebuild(myebuild,mydo,myroot,mysettings,debug=0,listonly=0,fetchonly=0,clea
# inefficient. improve this logic via making actionmap easily searchable to see if we're in the chain of what
# will be executed, either that or forced N doebuild calls instead of a single set of phase calls.
- if (mydo not in ("setup", "clean", "postinst", "preinst", "prerm","digest","manifest") and "noauto" not in features) or \
- mydo == "unpack":
+ if (mydo not in ("setup", "clean", "postinst", "preinst", "prerm", "fetch", "digest", "manifest") and
+ "noauto" not in features) or mydo == "unpack":
orig_distdir = mysettings["DISTDIR"]
edpath = mysettings["DISTDIR"] = os.path.join(mysettings["PORTAGE_BUILDDIR"], "distdir")
if os.path.exists(edpath):