From d0eaf07a400685a489c99c54fcbf6ecee82ac7ac Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Tue, 17 Feb 2026 15:25:54 +0000 Subject: [PATCH] cmake: Added missing newline to missing submodule message --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1c0e51b67..6a3635988 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -223,7 +223,7 @@ function(check_submodules_present) foreach(module ${gitmodules}) string(REGEX REPLACE "path *= *" "" module ${module}) if (NOT EXISTS "${PROJECT_SOURCE_DIR}/${module}/.git") - message(SEND_ERROR "Git submodule ${module} not found." + message(SEND_ERROR "Git submodule ${module} not found.\n" "Please run: git submodule update --init --recursive") endif() endforeach()