From e5ef944fb0fed952cd0344f67c052c0d7ecdbfea Mon Sep 17 00:00:00 2001 From: Sam James Date: Wed, 23 Apr 2025 11:11:14 +0100 Subject: [PATCH] cmake.eclass: use 'QA Notice:' prefix in eqawarn This makes life easier for tinderboxes, but we should improve this in some future EAPI. Signed-off-by: Sam James --- eclass/cmake.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index e1bad4cbd16fe..c97f74e8a2eda 100644 --- a/eclass/cmake.eclass +++ b/eclass/cmake.eclass @@ -303,7 +303,7 @@ _cmake_check_build_dir() { # TODO: For EAPI > 8, we should ban S=WORKDIR for CMake. # See bug #889420. if [[ ${S} == "${WORKDIR}" && ${BUILD_DIR} == "${WORKDIR}_build" ]] ; then - eqawarn "QA notice: S=WORKDIR is deprecated for cmake.eclass." + eqawarn "QA Notice: S=WORKDIR is deprecated for cmake.eclass." eqawarn "Please relocate the sources in src_unpack." BUILD_DIR="${WORKDIR}"/${P}_build fi