summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-10-05 05:09:33 +0000
committerZac Medico <zmedico@gentoo.org>2008-10-05 05:09:33 +0000
commit177c09dcc037d568fe421de0b5d7ddc3c618f352 (patch)
tree9beb3570474de812f2a7bd2b7ab8d772a45e8e7a /pym
parenta9578ae9501b11b7e2161dbe2f72abdcf080f6b8 (diff)
downloadportage-177c09dcc037d568fe421de0b5d7ddc3c618f352.tar.gz
portage-177c09dcc037d568fe421de0b5d7ddc3c618f352.tar.bz2
portage-177c09dcc037d568fe421de0b5d7ddc3c618f352.zip
* When ensuring sane $PWD in ebuild.sh, die if the `cd "$PORTAGE_BUILDDIR"`
call fails. * Create $PORTAGE_BUILDDIR for the "fetch" phase too since it might be necessary to call pkg_nofetch. svn path=/main/trunk/; revision=11628
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/__init__.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 2a596fa86..2cf46461e 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -5430,8 +5430,7 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0,
# Build directory creation isn't required for any of these.
have_build_dirs = False
- if mydo not in ("clean", "cleanrm", "digest",
- "fetch", "help", "manifest"):
+ if mydo not in ("digest", "help", "manifest"):
mystatus = prepare_build_dirs(myroot, mysettings, cleanup)
if mystatus:
return mystatus