Skip to content

Commit

Permalink
cmake: fix typo
Browse files Browse the repository at this point in the history
The message mode parameter is case-sensitiv and must be written upper-case.
  • Loading branch information
joergsteffens authored and arogge committed Apr 22, 2021
1 parent 2566a8f commit 3c2e57b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion core/CMakeLists.txt
Expand Up @@ -870,7 +870,6 @@ message(" LMDB support: ${lmdb} ")
message(" NDMP support: ${ndmp} ")
message(" Build ndmjob binary: ${build_ndmjob} ")
message(" enable-lockmgr: ${lockmgr} ")
message(" bat support: ${support_bat} ")
message(" tray-monitor support: ${HAVE_TRAYMONITOR} ")
message(" test-plugin support: ${HAVE_TEST_PLUGIN} ")
message(" client-only: ${build_client_only} ")
Expand Down
4 changes: 2 additions & 2 deletions core/src/CMakeLists.txt
Expand Up @@ -35,10 +35,10 @@ endif()

if(RUN_SYSTEMTESTS_ON_INSTALLED_FILES)
message(
status "Skipping unit tests as testing on installed files is requested"
STATUS "Skipping unit tests as testing on installed files is requested"
)
elseif(NOT GTest_FOUND)
message(status "Skipping unit tests as gtest was not found")
message(STATUS "Skipping unit tests as gtest was not found")
else()
add_subdirectory(tests)
endif()
Expand Down

0 comments on commit 3c2e57b

Please sign in to comment.