Skip to content

Commit

Permalink
Merge pull request #402 from gsjaardema/patch-7
Browse files Browse the repository at this point in the history
Revert some incorrect uppercase->lowercase changes

This was triggered by the changes in PR #379 (see #274)
  • Loading branch information
bartlettroscoe authored Aug 6, 2021
2 parents cab6dee + 63abb49 commit 9c210c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tribits/common_tpls/find_modules/FindHDF5.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ function(_hdf5_extra_library_dirs _file _var)
endforeach()

# Now match all the -L flags
string(REGEX MATCHALL "-l([^\" ]+|\"[^\"]+\")" _lib_path_flags ${_ldflags})
string(REGEX MATCHALL "-L([^\" ]+|\"[^\"]+\")" _lib_path_flags ${_ldflags})

# Loop through each
set(_directories)
Expand Down Expand Up @@ -259,7 +259,7 @@ function(_hdf5_extra_include_dirs _file _var)

# Now match all the -I flags
if (${_cflags})
string(REGEX MATCHALL "-i([^\" ]+|\"[^\"]+\")" _inc_path_flags ${_cflags})
string(REGEX MATCHALL "-I([^\" ]+|\"[^\"]+\")" _inc_path_flags ${_cflags})

# Loop through each
set(_directories)
Expand Down

0 comments on commit 9c210c5

Please sign in to comment.