diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-09-01 21:09:22 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-09-01 21:09:22 (GMT) |
commit | fc90c784e1b114079038484f1825ac53987c6b44 (patch) | |
tree | cc01f08062d92e56c563e23659ea1d3266a16022 /configure.in | |
parent | 30c61d0f254d8201e9f84ee45f15fb83ee5f4495 (diff) | |
download | hdf5-fc90c784e1b114079038484f1825ac53987c6b44.zip hdf5-fc90c784e1b114079038484f1825ac53987c6b44.tar.gz hdf5-fc90c784e1b114079038484f1825ac53987c6b44.tar.bz2 |
[svn-r11336] Purpose:
Bug fix
Description:
A typo made configure throw an error if only C++ was enabled. Fixed.
Platforms tested:
mir
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 3b705b1..0359095 100644 --- a/configure.in +++ b/configure.in @@ -2039,12 +2039,12 @@ AC_ARG_ENABLE([parallel], dnl The --enable-parallel flag is not compatible with --enable-cxx. dnl If the user tried to specify both flags, throw an error. -if test "X${HDF_CXX}" != "X" && test "X${enable-parallel}" != "X"; then +if test "X${HDF_CXX}" != "X" && test "X$enable_parallel" != "X"; then AC_MSG_ERROR([--enable-cxx and --enable-parallel flags are incompatible]) fi dnl --enable-parallel is also incompatible with --enable-threadsafe. -if test "X${THREADSAFE}" != "X" && test "X${enable-parallel}" != "X"; then +if test "X${THREADSAFE}" != "X" && test "X$enable_parallel" != "X"; then AC_MSG_ERROR([--enable-threadsafe and --enable-parallel flags are incompatible]) fi |