summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-12-22 00:53:31 +0000
committerZac Medico <zmedico@gentoo.org>2006-12-22 00:53:31 +0000
commit19a35944ac0f7010791fd4d7d03147a679bb6446 (patch)
tree8e22babbe2259ed3aac6c37140af5d0168d1beaf /pym/portage.py
parentee491da35646a8f405eb5666c1c9f961d82ffe6b (diff)
downloadportage-19a35944ac0f7010791fd4d7d03147a679bb6446.tar.gz
portage-19a35944ac0f7010791fd4d7d03147a679bb6446.tar.bz2
portage-19a35944ac0f7010791fd4d7d03147a679bb6446.zip
Fix the "help" phase so that it works without build dirs.
svn path=/main/trunk/; revision=5347
Diffstat (limited to 'pym/portage.py')
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 8b39c621f..991f2b634 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -3134,7 +3134,7 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0,
return 1
# Build directory creation isn't required for any of these.
- if mydo not in ["fetch","digest","manifest"]:
+ if mydo not in ("digest", "fetch", "help", "manifest"):
mystatus = prepare_build_dirs(myroot, mysettings, cleanup)
if mystatus:
return mystatus