summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2020-03-20 19:37:46 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2020-03-20 19:37:46 (GMT)
commit0de545ac8b2a85a0edca389ae8db8d2bdfccbeb8 (patch)
tree0401368d58ad5b578420c3c2d5de38c2caf39fbf /configure.ac
parentd8ad45be791d2c3e7a4fc3494f2b4d95cd7cf3b7 (diff)
downloadhdf5-0de545ac8b2a85a0edca389ae8db8d2bdfccbeb8.zip
hdf5-0de545ac8b2a85a0edca389ae8db8d2bdfccbeb8.tar.gz
hdf5-0de545ac8b2a85a0edca389ae8db8d2bdfccbeb8.tar.bz2
Correct conditions for parallel builds with and without tests.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 4bb76d2..92dde46 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3015,7 +3015,7 @@ LDFLAGS="$saved_user_LDFLAGS"
## need to be compiled
AM_CONDITIONAL([BUILD_CXX_CONDITIONAL], [test "X$HDF_CXX" = "Xyes"])
-AM_CONDITIONAL([BUILD_PARALLEL_CONDITIONAL], [test -n "$PARALLEL"])
+AM_CONDITIONAL([BUILD_PARALLEL_CONDITIONAL], [test "X$PARALLEL" = "Xyes"])
AM_CONDITIONAL([BUILD_FORTRAN_CONDITIONAL], [test "X$HDF_FORTRAN" = "Xyes"])
AM_CONDITIONAL([BUILD_HDF5_HL_CONDITIONAL], [test "X$HDF5_HL" = "Xyes"])
AM_CONDITIONAL([BUILD_TESTS_CONDITIONAL], [test "X$HDF5_TESTS" = "Xyes"])