commit: 300ee9b77d46f3e728c8f27fab5e549a4cc2ec8e Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org> AuthorDate: Sat Jun 7 11:12:25 2025 +0000 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org> CommitDate: Sat Jun 7 11:17:41 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=300ee9b7
qt6-build.eclass: set CMAKE_QA_COMPAT_SKIP=1 Bug: https://bugs.gentoo.org/957476 Bug: https://bugs.gentoo.org/957475 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org> eclass/qt6-build.eclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eclass/qt6-build.eclass b/eclass/qt6-build.eclass index d0c29871f35b..f8b01845a4c9 100644 --- a/eclass/qt6-build.eclass +++ b/eclass/qt6-build.eclass @@ -178,6 +178,9 @@ qt6-build_src_configure() { local mycmakeargs=("${defaultcmakeargs[@]}") fi + # Qt has quite a lot of unused (false positive) CMakeLists.txt + local CMAKE_QA_COMPAT_SKIP=1 + cmake_src_configure }
