[Cmake-commits] CMake branch, next, updated. v3.8.0-rc1-230-g75b0769

Brad King brad.king at kitware.com
Fri Feb 17 09:17:55 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  75b076980b1522345e07bc3db45a13874896bae2 (commit)
       via  28bb68e3472a9f8c6d8eec894e85de74b976ff02 (commit)
      from  f80f94e6538a62d6de430c12630e15ecfd902830 (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=75b076980b1522345e07bc3db45a13874896bae2
commit 75b076980b1522345e07bc3db45a13874896bae2
Merge: f80f94e 28bb68e
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Fri Feb 17 09:17:53 2017 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Feb 17 09:17:53 2017 -0500

    Merge topic 'FindHDF5-include-dir-advanced' into next
    
    28bb68e3 FindHDF5: Restore HDF5_<LANG>_INCLUDE_DIR advanced cache entry mark


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=28bb68e3472a9f8c6d8eec894e85de74b976ff02
commit 28bb68e3472a9f8c6d8eec894e85de74b976ff02
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Fri Feb 17 09:07:18 2017 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Fri Feb 17 09:10:03 2017 -0500

    FindHDF5: Restore HDF5_<LANG>_INCLUDE_DIR advanced cache entry mark
    
    Refactoring in commit v3.6.0-rc1~72^2 (HDF5: Rework component searching
    to correctly find HL for all bindings, 2016-05-12) renamed the language
    loop variable used to construct the name of `HDF5_<LANG>_INCLUDE_DIR`
    but forgot to update it in the `mark_as_advanced` call.  Fix it now.
    
    Issue: #16651

diff --git a/Modules/FindHDF5.cmake b/Modules/FindHDF5.cmake
index e1199a7..fb97d68 100644
--- a/Modules/FindHDF5.cmake
+++ b/Modules/FindHDF5.cmake
@@ -680,7 +680,7 @@ if( NOT HDF5_FOUND )
             PATH_SUFFIXES include Include
             ${_HDF5_SEARCH_OPTS}
         )
-        mark_as_advanced(HDF5_${LANGUAGE}_INCLUDE_DIR)
+        mark_as_advanced(HDF5_${__lang}_INCLUDE_DIR)
         list(APPEND HDF5_INCLUDE_DIRS ${HDF5_${__lang}_INCLUDE_DIR})
 
         # find the HDF5 libraries

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list