From 300ee9b77d46f3e728c8f27fab5e549a4cc2ec8e Mon Sep 17 00:00:00 2001 From: Ionen Wolkens Date: Sat, 7 Jun 2025 07:12:25 -0400 Subject: [PATCH] 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 --- eclass/qt6-build.eclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eclass/qt6-build.eclass b/eclass/qt6-build.eclass index d0c29871f35bb..f8b01845a4c92 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 }