summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Harring <ferringb@gentoo.org>2005-12-26 07:20:29 +0000
committerBrian Harring <ferringb@gentoo.org>2005-12-26 07:20:29 +0000
commitc27bb493bcaa01f430da570a94dd845b3bab0f1b (patch)
tree92395f7348cce9b792c49b3b26802c8b89a996e0
parent87b7f8a83047a89c52ef0dc0b86e369970e17851 (diff)
downloadportage-c27bb493bcaa01f430da570a94dd845b3bab0f1b.tar.gz
portage-c27bb493bcaa01f430da570a94dd845b3bab0f1b.tar.bz2
portage-c27bb493bcaa01f430da570a94dd845b3bab0f1b.zip
don't generate the distfiles indirection for digest/manifest doebuild calls
svn path=/main/trunk/; revision=2477
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py
index c78a676d4..0e9f5ff6c 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -2794,7 +2794,7 @@ 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") and "noauto" not in features) or \
+ if (mydo not in ("setup", "clean", "postinst", "preinst", "prerm","digest","manifest") and "noauto" not in features) or \
mydo == "unpack":
orig_distdir = mysettings["DISTDIR"]
edpath = mysettings["DISTDIR"] = os.path.join(mysettings["PORTAGE_BUILDDIR"], "distdir")