From 8157759b7e44b049c3279544270e1466f9a61056 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Thu, 9 Jul 2026 22:36:50 -0400 Subject: [PATCH] rbutil: Rephrase optional component "not found" messages Prevents builder from falsely failing builds and their builders. Change-Id: I44df41416ef41401248132114ee586abde05d93e --- utils/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt index 1032478af2..fc771a093d 100644 --- a/utils/CMakeLists.txt +++ b/utils/CMakeLists.txt @@ -56,12 +56,12 @@ message("-- Found Qt${QT_VERSION_MAJOR}: ${Qt${QT_VERSION_MAJOR}_DIR}") if (TARGET Qt${QT_VERSION_MAJOR}::Multimedia) message("-- Found Qt::Multimedia") else() - message("-- QT::Multimedia not found, TTS preview not available") + message("-- Could not find QT::Multimedia, TTS preview not available") endif() if (TARGET Qt${QT_VERSION_MAJOR}::TextToSpeech) message("-- Found Qt::TextToSpeech") else() - message("-- QT::TextToSpeech not found, Qt TTS not available") + message("-- Could not find QT::TextToSpeech, Qt TTS not available") endif() add_compile_definitions(QT_NO_USE_NODISCARD_FILE_OPEN) @@ -350,7 +350,7 @@ target_include_directories(telechips PUBLIC ${CMAKE_CURRENT_LIST_DIR}/../tools) find_library(LIBBZ2 bz2) if(${LIBBZ2} STREQUAL "LIBBZ2-NOTFOUND") - message("-- bz2 not found, building our own") + message("-- Could not find system libbz2, building our own") add_library(bz2 bzip2/blocksort.c bzip2/bzlib.c