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 | |
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')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -48116,13 +48116,13 @@ if test "${enable_parallel+set}" = set; then fi; -if test "X${HDF_CXX}" != "X" && test "X${enable-parallel}" != "X"; then +if test "X${HDF_CXX}" != "X" && test "X$enable_parallel" != "X"; then { { echo "$as_me:$LINENO: error: --enable-cxx and --enable-parallel flags are incompatible" >&5 echo "$as_me: error: --enable-cxx and --enable-parallel flags are incompatible" >&2;} { (exit 1); exit 1; }; } fi -if test "X${THREADSAFE}" != "X" && test "X${enable-parallel}" != "X"; then +if test "X${THREADSAFE}" != "X" && test "X$enable_parallel" != "X"; then { { echo "$as_me:$LINENO: error: --enable-threadsafe and --enable-parallel flags are incompatible" >&5 echo "$as_me: error: --enable-threadsafe and --enable-parallel flags are incompatible" >&2;} { (exit 1); exit 1; }; } |