summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeTests/ModuleNoticesTest.cmake.in
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-08-01 18:59:50 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-08-01 18:59:50 (GMT)
commit88e1c54a7cd3213d87143558a8fddf39e7fdccc0 (patch)
tree3bb05b4e935ab00aa445129a073a6ff9321467af /Tests/CMakeTests/ModuleNoticesTest.cmake.in
parentbfac78d07479eb652405ee51548c4011766666ce (diff)
parent7a649111cdea2b10f2ec57084416be619867fbfb (diff)
downloadCMake-88e1c54a7cd3213d87143558a8fddf39e7fdccc0.zip
CMake-88e1c54a7cd3213d87143558a8fddf39e7fdccc0.tar.gz
CMake-88e1c54a7cd3213d87143558a8fddf39e7fdccc0.tar.bz2
Merge topic 'use-string-append'
7a649111 Use string(APPEND) in Tests 5d0d980d Use string(APPEND) in Modules
Diffstat (limited to 'Tests/CMakeTests/ModuleNoticesTest.cmake.in')
-rw-r--r--Tests/CMakeTests/ModuleNoticesTest.cmake.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CMakeTests/ModuleNoticesTest.cmake.in b/Tests/CMakeTests/ModuleNoticesTest.cmake.in
index 8ecebd3..7bea0af 100644
--- a/Tests/CMakeTests/ModuleNoticesTest.cmake.in
+++ b/Tests/CMakeTests/ModuleNoticesTest.cmake.in
@@ -35,7 +35,7 @@ foreach(module ${all_modules})
message(STATUS "module: ${module}")
file(READ "${dir}/${module}" module_content)
if(NOT "${module_content}" MATCHES "${notice_regex}")
- set(notice_missing "${notice_missing} ${module}\n")
+ string(APPEND notice_missing " ${module}\n")
endif()
endforeach()