commit: 3fa625c5967246ee3ffd59393b26379af4c91e8c Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Jan 2 23:30:56 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Jan 2 23:31:57 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fa625c5
toolchain.eclass: run fixincludes for x86_64-w32-mingw32 too This came up in a PR to add CI for mingw targets to crossdev, specifically https://github.com/gentoo/crossdev/actions/runs/12337160095/job/34430532180?pr=29. Bug: https://bugs.gentoo.org/925204 Bug: https://bugs.gentoo.org/946397 Signed-off-by: Sam James <sam <AT> gentoo.org> eclass/toolchain.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index acc51ead74cc..244de97076e4 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1804,7 +1804,7 @@ toolchain_src_configure() { fi case ${CBUILD}-${CHOST}-${CTARGET} in - *i686-w64-mingw32*|*x86_64-w64-mingw32*) + *i686-w64-mingw32*|*x86_64-w64-mingw32*|*x86_64-w32-mingw32*) # config/i386/t-cygming requires fixincludes (bug #925204) GCC_RUN_FIXINCLUDES=1 ;;
