diff options
author | Sylvain Joubert <joubert.sy@gmail.com> | 2019-08-06 10:42:06 (GMT) |
---|---|---|
committer | Sylvain Joubert <joubert.sy@gmail.com> | 2019-08-06 10:42:06 (GMT) |
commit | e45187d525a129d2903f44cfbc4dc3210905757d (patch) | |
tree | 95510574f7d711e776eb6cc1b575d7731cdcaccc /Modules/FindPackageHandleStandardArgs.cmake | |
parent | 53fc083d3744555600a6a20d9bbdc0712a46cce0 (diff) | |
download | CMake-e45187d525a129d2903f44cfbc4dc3210905757d.zip CMake-e45187d525a129d2903f44cfbc4dc3210905757d.tar.gz CMake-e45187d525a129d2903f44cfbc4dc3210905757d.tar.bz2 |
FPHSA: Remove extra space in module components report
Diffstat (limited to 'Modules/FindPackageHandleStandardArgs.cmake')
-rw-r--r-- | Modules/FindPackageHandleStandardArgs.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/FindPackageHandleStandardArgs.cmake b/Modules/FindPackageHandleStandardArgs.cmake index 1722d6a..a2999fc 100644 --- a/Modules/FindPackageHandleStandardArgs.cmake +++ b/Modules/FindPackageHandleStandardArgs.cmake @@ -264,14 +264,14 @@ function(FIND_PACKAGE_HANDLE_STANDARD_ARGS _NAME _FIRST_ARG) if(${_NAME}_${comp}_FOUND) if(NOT DEFINED FOUND_COMPONENTS_MSG) - set(FOUND_COMPONENTS_MSG "found components: ") + set(FOUND_COMPONENTS_MSG "found components:") endif() string(APPEND FOUND_COMPONENTS_MSG " ${comp}") else() if(NOT DEFINED MISSING_COMPONENTS_MSG) - set(MISSING_COMPONENTS_MSG "missing components: ") + set(MISSING_COMPONENTS_MSG "missing components:") endif() string(APPEND MISSING_COMPONENTS_MSG " ${comp}") |