From 6960652425ec59424a7eca66caf625ab13a67476 Mon Sep 17 00:00:00 2001 From: Ionen Wolkens Date: Mon, 30 Jun 2025 00:59:03 -0400 Subject: [PATCH] qt6-build.eclass: move CMAKE_QA_COMPAT_SKIP=1 to src_prepare This was changed in cmake.eclass, could move it global but kind of prefer to avoid this in an eclass and it has the minor bonus of letting the src_install QA check still happen which we have no reason to skip on such a large dev-qt/*:6 scale. Signed-off-by: Ionen Wolkens --- eclass/qt6-build.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/qt6-build.eclass b/eclass/qt6-build.eclass index c60a56f84203b..462de4e0b1ad0 100644 --- a/eclass/qt6-build.eclass +++ b/eclass/qt6-build.eclass @@ -118,6 +118,9 @@ qt6-build_src_unpack() { # QT6_PREFIX, QT6_LIBDIR, and others), and handle anything else # generic as needed. qt6-build_src_prepare() { + # Qt has quite a lot of unused (false positive) CMakeLists.txt + local CMAKE_QA_COMPAT_SKIP=1 + cmake_src_prepare if [[ -e CMakeLists.txt ]]; then @@ -178,9 +181,6 @@ 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 }