diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2021-12-07 21:30:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-07 21:30:16 (GMT) |
commit | 206e1dacfe4094b47c2a9e74982450a308fd08c5 (patch) | |
tree | ecd71ef54913a79ccdf0847d366557021946d615 /configure.ac | |
parent | c03ab3cb8d85bd528984dc5523971744352cd672 (diff) | |
download | hdf5-206e1dacfe4094b47c2a9e74982450a308fd08c5.zip hdf5-206e1dacfe4094b47c2a9e74982450a308fd08c5.tar.gz hdf5-206e1dacfe4094b47c2a9e74982450a308fd08c5.tar.bz2 |
Make default to build high-level tools the same as default for (#1258)
* Make default to build high-level tools the same as default for
high-level library.
* Correct default HDF5_HL_TOOLS
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 978c165..d5714e1 100644 --- a/configure.ac +++ b/configure.ac @@ -846,8 +846,10 @@ AC_SUBST([HDF5_HL_TOOLS]) ## The high-level library is enabled unless the build mode is clean. if test "X-$BUILD_MODE" = "X-clean" ; then HDF5_HL=no + HDF5_HL_TOOLS=no else HDF5_HL=yes + HDF5_HL_TOOLS=yes fi ## high-level library directories (set when needed, blank until then) |