diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-05-05 06:35:57 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-05-05 06:35:57 +0000 |
commit | db04dbfbc881e701c155e134561ea920e2ca4660 (patch) | |
tree | 11b24ef67716d3af8c55029da4b639a5a9c52aa0 | |
parent | 1729717d453726399ac0f9f7db4d6a9f86dc46bf (diff) | |
download | portage-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
-rw-r--r-- | pym/portage/const.py | 3 |
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 |