From 57c187b2d74e2ac5a1a1dde590ba78f73d91f591 Mon Sep 17 00:00:00 2001 From: Sam James Date: Thu, 2 Jan 2025 23:33:43 +0000 Subject: [PATCH] toolchain.eclass: run fixincludes for all mingw targets Same as 3fa625c5967246ee3ffd59393b26379af4c91e8c. x86_64-w64-mingw64 needs it too. Bug: https://bugs.gentoo.org/925204 Bug: https://bugs.gentoo.org/946397 Signed-off-by: Sam James --- eclass/toolchain.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 244de97076e43..6dc139bd1a02a 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*|*x86_64-w32-mingw32*) + *-w*-mingw*) # config/i386/t-cygming requires fixincludes (bug #925204) GCC_RUN_FIXINCLUDES=1 ;;