summaryrefslogtreecommitdiffstats
path: root/Help/manual/cmake-packages.7.rst
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-11-06 18:49:12 (GMT)
committerBrad King <brad.king@kitware.com>2014-11-06 19:46:18 (GMT)
commit8dab50636d8665a8587a2ce5bda4924bd3c6782e (patch)
tree8562d2f3a337e1407de67a87bd0cc0f9c3ed2b41 /Help/manual/cmake-packages.7.rst
parentf84ddd4b562540b3470a31f0799acbf788c36bf3 (diff)
downloadCMake-8dab50636d8665a8587a2ce5bda4924bd3c6782e.zip
CMake-8dab50636d8665a8587a2ce5bda4924bd3c6782e.tar.gz
CMake-8dab50636d8665a8587a2ce5bda4924bd3c6782e.tar.bz2
Help: Fix example in cmake-packages to avoid long line
Diffstat (limited to 'Help/manual/cmake-packages.7.rst')
-rw-r--r--Help/manual/cmake-packages.7.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/manual/cmake-packages.7.rst b/Help/manual/cmake-packages.7.rst
index 1928fbf..4e63f69 100644
--- a/Help/manual/cmake-packages.7.rst
+++ b/Help/manual/cmake-packages.7.rst
@@ -479,7 +479,7 @@ be true. This can be tested with logic in the package configuration file:
foreach(_comp ${ClimbingStats_FIND_COMPONENTS})
if (NOT ";${_supported_components};" MATCHES _comp)
set(ClimbingStats_FOUND False)
- set(ClimbingStats_NOTFOUND_MESSAGE "Specified unsupported component: ${_comp}")
+ set(ClimbingStats_NOTFOUND_MESSAGE "Unsupported component: ${_comp}")
endif()
include("${CMAKE_CURRENT_LIST_DIR}/ClimbingStats${_comp}Targets.cmake")
endforeach()