aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-05-05 06:35:57 +0000
committerZac Medico <zmedico@gentoo.org>2008-05-05 06:35:57 +0000
commitdb04dbfbc881e701c155e134561ea920e2ca4660 (patch)
tree11b24ef67716d3af8c55029da4b639a5a9c52aa0 /pym/portage/const.py
parentBug #219286 - Whitelist INSTALL_MASK so that it works properly for binary (diff)
downloadportage-db04dbfbc881e701c155e134561ea920e2ca4660.tar.gz
portage-db04dbfbc881e701c155e134561ea920e2ca4660.tar.bz2
portage-db04dbfbc881e701c155e134561ea920e2ca4660.zip
Add "package" to EBUILD_PHASES since it's possible for einfo to be called
by install_mask() during that phase. svn path=/main/trunk/; revision=10198
Diffstat (limited to 'pym/portage/const.py')
-rw-r--r--pym/portage/const.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage/const.py b/pym/portage/const.py
index bc949fb91..26eddd596 100644
--- a/pym/portage/const.py
+++ b/pym/portage/const.py
@@ -56,7 +56,8 @@ INCREMENTALS = ["USE", "USE_EXPAND", "USE_EXPAND_HIDDEN", "FEATURES",
"CONFIG_PROTECT_MASK", "CONFIG_PROTECT",
"PRELINK_PATH", "PRELINK_PATH_MASK", "PROFILE_ONLY_VARIABLES"]
EBUILD_PHASES = ["setup", "unpack", "compile", "test", "install",
- "preinst", "postinst", "prerm", "postrm", "other"]
+ "package", "preinst", "postinst","prerm", "postrm",
+ "other"]
EAPI = 1