diff options
author | H. Joe Lee <hyoklee@hdfgroup.org> | 2023-06-16 04:46:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-16 04:46:33 (GMT) |
commit | 10093f7c4345061bdbebc12888debbf08fe85a5b (patch) | |
tree | 2ec3971c88381290de0550ff5effa42b41f1efa4 /bin/cmakehdf5 | |
parent | de2cbcf891bc3ea483743cf800beb4f2a6447ed7 (diff) | |
download | hdf5-10093f7c4345061bdbebc12888debbf08fe85a5b.zip hdf5-10093f7c4345061bdbebc12888debbf08fe85a5b.tar.gz hdf5-10093f7c4345061bdbebc12888debbf08fe85a5b.tar.bz2 |
Fix path to libhdf5.settings in cmakehdf5 (#3140)
Diffstat (limited to 'bin/cmakehdf5')
-rwxr-xr-x | bin/cmakehdf5 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/cmakehdf5 b/bin/cmakehdf5 index f17b9c4..1426589 100755 --- a/bin/cmakehdf5 +++ b/bin/cmakehdf5 @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # Build and Test HDF5 using cmake. # Author: Allen Byrne # Albert Cheng @@ -365,7 +365,7 @@ STEP "Configure..." \ $with_zlib \ $with_szlib \ $srcdir" $configlog &&\ - cat $config_summary >> $configlog + cat src/$config_summary >> $configlog # 5. Build the C library, tools and tests with this command: STEP "Build the library, tools and tests, ..." "cmake --build . --config Release -- $njobs" $makelog |