summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2020-03-19 20:09:55 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2020-03-19 20:09:55 (GMT)
commit1cc2b65b1f745d9b7d770504fb3def73ba8346c1 (patch)
tree15716b78b101cfb1a5ce442493f18f00d159516f /configure
parent27e14f31f7dce3765d6c3ce51b6ff4e700a22e19 (diff)
downloadhdf5-1cc2b65b1f745d9b7d770504fb3def73ba8346c1.zip
hdf5-1cc2b65b1f745d9b7d770504fb3def73ba8346c1.tar.gz
hdf5-1cc2b65b1f745d9b7d770504fb3def73ba8346c1.tar.bz2
Fixes for test failures with --disable-tests --disable-tools options.
Don't test ph5diff if tests are disabled.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 5 insertions, 3 deletions
diff --git a/configure b/configure
index 83130b3..da4d6fc 100755
--- a/configure
+++ b/configure
@@ -27548,8 +27548,10 @@ esac
ADD_PARALLEL_FILES="no"
if test -n "$PARALLEL"; then
- ## The 'testpar' directory should participate in the build
- TESTPARALLEL=testpar
+ if test "X$HDF5_TESTS" = "Xyes"; then
+ ## The 'testpar' directory should participate in the build
+ TESTPARALLEL=testpar
+ fi
## We are building a parallel library
@@ -29429,7 +29431,7 @@ else
BUILD_CXX_CONDITIONAL_FALSE=
fi
- if test -n "$TESTPARALLEL"; then
+ if test -n "$PARALLEL"; then
BUILD_PARALLEL_CONDITIONAL_TRUE=
BUILD_PARALLEL_CONDITIONAL_FALSE='#'
else