diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-08-04 00:12:19 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-08-04 00:12:19 +0000 |
commit | dbdf3d2da63df995a1b30690a9a8b1c81b7a820b (patch) | |
tree | b51b3369d5179cfd596483af240837891e65da99 | |
parent | da03b7847c5c46d2748908d9814dab66807863c8 (diff) | |
download | portage-dbdf3d2da63df995a1b30690a9a8b1c81b7a820b.tar.gz portage-dbdf3d2da63df995a1b30690a9a8b1c81b7a820b.tar.bz2 portage-dbdf3d2da63df995a1b30690a9a8b1c81b7a820b.zip |
Remove the depend phase from the doebuild actionmap since it's never used.
svn path=/main/trunk/; revision=7555
-rw-r--r-- | pym/portage/__init__.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 7f18803c1..3a91a9b7a 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -3654,7 +3654,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"], @@ -4045,7 +4044,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}}, |