summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-08-04 00:13:00 +0000
committerZac Medico <zmedico@gentoo.org>2007-08-04 00:13:00 +0000
commit81a0e572ca57abe61cf172a07f408e28173cf27f (patch)
treedf3192f8cf5833dcbbb32732b77abdb889511cae /pym/portage.py
parente4a25e1ef4876458344ceb96d29f315c6fdee9d4 (diff)
downloadportage-81a0e572ca57abe61cf172a07f408e28173cf27f.tar.gz
portage-81a0e572ca57abe61cf172a07f408e28173cf27f.tar.bz2
portage-81a0e572ca57abe61cf172a07f408e28173cf27f.zip
Remove the depend phase from the doebuild actionmap since it's never used. (trunk r7555)
svn path=/main/branches/2.1.2/; revision=7556
Diffstat (limited to 'pym/portage.py')
-rw-r--r--pym/portage.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 49e2205ba..2ef8ea92d 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -3605,7 +3605,6 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0,
# chunked out deps for each phase, so that ebuild binary can use it
# to collapse targets down.
actionmap_deps={
- "depend": [],
"setup": [],
"unpack": ["setup"],
"compile":["unpack"],
@@ -3995,7 +3994,6 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0,
# args are for the to spawn function
actionmap = {
-"depend": {"cmd":ebuild_sh, "args":{"droppriv":1, "free":0, "sesandbox":0, "fakeroot":0}},
"setup": {"cmd":ebuild_sh, "args":{"droppriv":0, "free":1, "sesandbox":0, "fakeroot":0}},
"unpack": {"cmd":ebuild_sh, "args":{"droppriv":droppriv, "free":0, "sesandbox":sesandbox, "fakeroot":0}},
"compile":{"cmd":ebuild_sh, "args":{"droppriv":droppriv, "free":nosandbox, "sesandbox":sesandbox, "fakeroot":0}},