commit: e041dc8a4a9f9e03f63b91ba4db5806fb7d8ed1e Author: Alfred Wingate <parona <AT> protonmail <DOT> com> AuthorDate: Sat Feb 21 13:31:49 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Mar 4 16:49:45 2026 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=e041dc8a
_emerge/actions.py: don't need to pass DEFINED_PHASES here anymore DEFINED_PHASES doesn't need to added explicitly to auxkeys anymore as _aux_cache_keys has it since 59d910bceb96d1c68687f3a10dbb5147063e6b02. See-Also: 43a864ffa96ebaecb98971e74cfeb35a42b9b34d See-Also: 59d910bceb96d1c68687f3a10dbb5147063e6b02 Signed-off-by: Alfred Wingate <parona <AT> protonmail.com> Part-of: https://github.com/gentoo/portage/pull/1558 Signed-off-by: Sam James <sam <AT> gentoo.org> lib/_emerge/actions.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/_emerge/actions.py b/lib/_emerge/actions.py index 1838582ff6..84c2136189 100644 --- a/lib/_emerge/actions.py +++ b/lib/_emerge/actions.py @@ -2261,7 +2261,6 @@ def action_info(settings, trees, myopts, myfiles): # the current config) mydesiredvars = ["CHOST", "CFLAGS", "CXXFLAGS", "FEATURES", "LDFLAGS"] auxkeys = mydesiredvars + list(vardb._aux_cache_keys) - auxkeys.append("DEFINED_PHASES") pkgsettings = portage.config(clone=settings) # Loop through each package
