[Cmake-commits] CMake branch, next, updated. v3.3.0-2155-g65e51df

Brad King brad.king at kitware.com
Wed Aug 12 09:25:04 EDT 2015


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  65e51dff4210a84a33ceaba5adef6927999c2508 (commit)
       via  50c9f521e2debce5beb538050fd12d802964a4b1 (commit)
      from  4dc6b1ce6e7470160c2c787e2f3a7cc6a36fd814 (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 -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=65e51dff4210a84a33ceaba5adef6927999c2508
commit 65e51dff4210a84a33ceaba5adef6927999c2508
Merge: 4dc6b1c 50c9f52
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Wed Aug 12 09:25:03 2015 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Aug 12 09:25:03 2015 -0400

    Merge topic 'FindPkgConfig-capital-messages' into next
    
    50c9f521 FindPkgConfig: Capitalize first letter of all message()s


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=50c9f521e2debce5beb538050fd12d802964a4b1
commit 50c9f521e2debce5beb538050fd12d802964a4b1
Author:     Christopher Meng <i at cicku.me>
AuthorDate: Wed Aug 12 10:30:53 2015 +0800
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Wed Aug 12 09:24:44 2015 -0400

    FindPkgConfig: Capitalize first letter of all message()s
    
    This makes FindPkgConfig output more formal and more consistent with
    many other messages produced by CMake.

diff --git a/Modules/FindPkgConfig.cmake b/Modules/FindPkgConfig.cmake
index 53c17f1..526a62e 100644
--- a/Modules/FindPkgConfig.cmake
+++ b/Modules/FindPkgConfig.cmake
@@ -192,9 +192,9 @@ macro(_pkg_check_modules_internal _is_required _is_silent _no_cmake_path _no_cma
     # give out status message telling checked module
     if (NOT ${_is_silent})
       if (_pkg_check_modules_cnt EQUAL 1)
-        message(STATUS "checking for module '${_pkg_check_modules_list}'")
+        message(STATUS "Checking for module '${_pkg_check_modules_list}'")
       else()
-        message(STATUS "checking for modules '${_pkg_check_modules_list}'")
+        message(STATUS "Checking for modules '${_pkg_check_modules_list}'")
       endif()
     endif()
 
@@ -327,7 +327,7 @@ macro(_pkg_check_modules_internal _is_required _is_silent _no_cmake_path _no_cma
       # evaluate result and tell failures
       if (_pkgconfig_retval)
         if(NOT ${_is_silent})
-          message(STATUS "  package '${_pkg_check_modules_pkg}' not found")
+          message(STATUS "  Package '${_pkg_check_modules_pkg}' not found")
         endif()
 
         set(_pkg_check_modules_failed 1)
@@ -361,7 +361,7 @@ macro(_pkg_check_modules_internal _is_required _is_silent _no_cmake_path _no_cma
         _pkgconfig_invoke(${_pkg_check_modules_pkg} "${_pkg_check_prefix}" LIBDIR     ""   --variable=libdir )
 
         if (NOT ${_is_silent})
-          message(STATUS "  found ${_pkg_check_modules_pkg}, version ${_pkgconfig_VERSION}")
+          message(STATUS "  Found ${_pkg_check_modules_pkg}, version ${_pkgconfig_VERSION}")
         endif ()
       endforeach()
 
@@ -529,7 +529,7 @@ macro(pkg_search_module _prefix _module0)
     _pkgconfig_parse_options(_pkg_modules_alt _pkg_is_required _pkg_is_silent _no_cmake_path _no_cmake_environment_path "${_module0}" ${ARGN})
 
     if (NOT ${_pkg_is_silent})
-      message(STATUS "checking for one of the modules '${_pkg_modules_alt}'")
+      message(STATUS "Checking for one of the modules '${_pkg_modules_alt}'")
     endif ()
 
     # iterate through all modules and stop at the first working one.

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

Summary of changes:
 Modules/FindPkgConfig.cmake |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list