[Cmake-commits] CMake branch, next, updated. v3.0.1-5090-gca03c62

Chuck Atkins chuck.atkins at kitware.com
Tue Sep 2 09:37:15 EDT 2014


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  ca03c62e948b585b3b5fababa953ffe7314a6f62 (commit)
       via  075923cb50250782cb77eae6ffb499dc545d3dab (commit)
      from  338b2ed88f8a53143185979516b5e39cb3a47e57 (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=ca03c62e948b585b3b5fababa953ffe7314a6f62
commit ca03c62e948b585b3b5fababa953ffe7314a6f62
Merge: 338b2ed 075923c
Author:     Chuck Atkins <chuck.atkins at kitware.com>
AuthorDate: Tue Sep 2 09:37:14 2014 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Sep 2 09:37:14 2014 -0400

    Merge topic 'fix-gtk2-missing-optional-includes' into next
    
    075923cb FindGTK2: Use cleaner syntax for checking optional includes


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=075923cb50250782cb77eae6ffb499dc545d3dab
commit 075923cb50250782cb77eae6ffb499dc545d3dab
Author:     Chuck Atkins <chuck.atkins at kitware.com>
AuthorDate: Tue Sep 2 09:30:03 2014 -0400
Commit:     Chuck Atkins <chuck.atkins at kitware.com>
CommitDate: Tue Sep 2 09:30:03 2014 -0400

    FindGTK2: Use cleaner syntax for checking optional includes

diff --git a/Modules/FindGTK2.cmake b/Modules/FindGTK2.cmake
index e09dc99..67dc0eb 100644
--- a/Modules/FindGTK2.cmake
+++ b/Modules/FindGTK2.cmake
@@ -541,7 +541,7 @@ function(_GTK2_ADD_TARGET _var)
 
         if(_${_var}_OPTIONAL_INCLUDES)
             foreach(_D ${_${_var}_OPTIONAL_INCLUDES})
-                if(NOT (_D MATCHES "-NOTFOUND\$"))
+                if(_D)
                     _GTK2_ADD_TARGET_INCLUDE_DIRS(${_var} ${_D})
                 endif()
             endforeach()

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

Summary of changes:
 Modules/FindGTK2.cmake |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list