summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-11-19 10:19:50 +0100
committerGitHub <noreply@github.com>2021-11-19 10:19:50 +0100
commitd2e009f3559083d68d3a0a50ff31c57a97d6b1c7 (patch)
tree71aeccb39274ac23f947bae842ff43865804f999
parentMerge pull request #7342 from goldenx86/patch-3 (diff)
parentMove the cmake submodule checkout command to a new line (diff)
downloadyuzu-d2e009f3559083d68d3a0a50ff31c57a97d6b1c7.tar
yuzu-d2e009f3559083d68d3a0a50ff31c57a97d6b1c7.tar.gz
yuzu-d2e009f3559083d68d3a0a50ff31c57a97d6b1c7.tar.bz2
yuzu-d2e009f3559083d68d3a0a50ff31c57a97d6b1c7.tar.lz
yuzu-d2e009f3559083d68d3a0a50ff31c57a97d6b1c7.tar.xz
yuzu-d2e009f3559083d68d3a0a50ff31c57a97d6b1c7.tar.zst
yuzu-d2e009f3559083d68d3a0a50ff31c57a97d6b1c7.zip
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6044e311a..2c044c1ea 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -57,7 +57,7 @@ function(check_submodules_present)
string(REGEX REPLACE "path *= *" "" module ${module})
if (NOT EXISTS "${PROJECT_SOURCE_DIR}/${module}/.git")
message(FATAL_ERROR "Git submodule ${module} not found. "
- "Please run: git submodule update --init --recursive")
+ "Please run: \ngit submodule update --init --recursive")
endif()
endforeach()
endfunction()