diff options
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/GenerateHelptags.cmake.in | 2 | ||||
-rw-r--r-- | cmake/LuaHelpers.cmake | 2 | ||||
-rw-r--r-- | cmake/RunLuacheck.cmake | 2 | ||||
-rw-r--r-- | cmake/RunTests.cmake | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/cmake/GenerateHelptags.cmake.in b/cmake/GenerateHelptags.cmake.in index 3ced2c0b17..db6f15b1be 100644 --- a/cmake/GenerateHelptags.cmake.in +++ b/cmake/GenerateHelptags.cmake.in @@ -8,7 +8,7 @@ else() HELPTAGS_WORKING_DIRECTORY) endif() -message(STATUS "Generating helptags in ${HELPTAGS_WORKING_DIRECTORY}.") +message(STATUS "Generating helptags in ${HELPTAGS_WORKING_DIRECTORY}") if(EXISTS ${HELPTAGS_WORKING_DIRECTORY}/) message(STATUS "${HELPTAGS_WORKING_DIRECTORY} already exists") # If the doc directory already exists, helptags could fail due to duplicate diff --git a/cmake/LuaHelpers.cmake b/cmake/LuaHelpers.cmake index 3cba47412b..0239460f2b 100644 --- a/cmake/LuaHelpers.cmake +++ b/cmake/LuaHelpers.cmake @@ -17,7 +17,7 @@ endfunction() function(check_lua_deps LUA_PRG_PATH MODULES RESULT_VAR) # Check if the lua interpreter at the given path # satisfies all Neovim dependencies - message(STATUS "Checking Lua interpreter ${LUA_PRG_PATH}") + message(STATUS "Checking Lua interpreter: ${LUA_PRG_PATH}") if(NOT EXISTS ${LUA_PRG_PATH}) message(STATUS "[${LUA_PRG_PATH}] file not found") diff --git a/cmake/RunLuacheck.cmake b/cmake/RunLuacheck.cmake index 5129541cd8..4887e562a5 100644 --- a/cmake/RunLuacheck.cmake +++ b/cmake/RunLuacheck.cmake @@ -18,5 +18,5 @@ execute_process( if(NOT res EQUAL 0) message(STATUS "Output to stderr:\n${err}") - message(FATAL_ERROR "Linting tests failed with error: ${res}.") + message(FATAL_ERROR "Linting tests failed with error: ${res}") endif() diff --git a/cmake/RunTests.cmake b/cmake/RunTests.cmake index a51990e925..a764b19850 100644 --- a/cmake/RunTests.cmake +++ b/cmake/RunTests.cmake @@ -50,5 +50,5 @@ file(REMOVE_RECURSE ${WORKING_DIR}/Xtest-tmpdir) if(NOT res EQUAL 0) message(STATUS "Output to stderr:\n${err}") - message(FATAL_ERROR "Running ${TEST_TYPE} tests failed with error: ${res}.") + message(FATAL_ERROR "${TEST_TYPE} tests failed with error: ${res}") endif() |