[Cmake-commits] CMake branch, next, updated. v3.7.2-2461-gad55932

Brad King brad.king at kitware.com
Wed Feb 1 08:43:08 EST 2017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  ad55932e3d6ee96a52bad0e821cdbbd9672f100f (commit)
       via  f3619bbcd648dc35ffca11b154e01eae0106d2ff (commit)
      from  5eb3c083401d6cf054a6841688702c0102b4aecb (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ad55932e3d6ee96a52bad0e821cdbbd9672f100f
commit ad55932e3d6ee96a52bad0e821cdbbd9672f100f
Merge: 5eb3c08 f3619bb
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Wed Feb 1 08:43:07 2017 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Feb 1 08:43:07 2017 -0500

    Merge topic 'doc-cmake-packages-typo' into next
    
    f3619bbc Help: Fix typo in <pkg>_NOT_FOUND_MESSAGE example in cmake-packages(7)


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f3619bbcd648dc35ffca11b154e01eae0106d2ff
commit f3619bbcd648dc35ffca11b154e01eae0106d2ff
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Wed Feb 1 08:40:59 2017 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Wed Feb 1 08:40:59 2017 -0500

    Help: Fix typo in <pkg>_NOT_FOUND_MESSAGE example in cmake-packages(7)
    
    Fixes: #16616

diff --git a/Help/manual/cmake-packages.7.rst b/Help/manual/cmake-packages.7.rst
index c27c612..c9442bc 100644
--- a/Help/manual/cmake-packages.7.rst
+++ b/Help/manual/cmake-packages.7.rst
@@ -449,12 +449,12 @@ 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 "Unsupported component: ${_comp}")
+      set(ClimbingStats_NOT_FOUND_MESSAGE "Unsupported component: ${_comp}")
     endif()
     include("${CMAKE_CURRENT_LIST_DIR}/ClimbingStats${_comp}Targets.cmake")
   endforeach()
 
-Here, the ``ClimbingStats_NOTFOUND_MESSAGE`` is set to a diagnosis that the package
+Here, the ``ClimbingStats_NOT_FOUND_MESSAGE`` is set to a diagnosis that the package
 could not be found because an invalid component was specified.  This message
 variable can be set for any case where the ``_FOUND`` variable is set to ``False``,
 and will be displayed to the user.

-----------------------------------------------------------------------

Summary of changes:
 Help/manual/cmake-packages.7.rst |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list