diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-09-21 15:07:44 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-09-21 15:07:44 (GMT) |
commit | 36ffea6f61fb03625e22165b2a05f5dde1c7b65e (patch) | |
tree | 9a2405b6f0c712975e07a872cae60ad97c4a332a | |
parent | d09ca66a26e1c7cd57d40fa3fc34f2b7b4c40986 (diff) | |
download | hdf5-36ffea6f61fb03625e22165b2a05f5dde1c7b65e.zip hdf5-36ffea6f61fb03625e22165b2a05f5dde1c7b65e.tar.gz hdf5-36ffea6f61fb03625e22165b2a05f5dde1c7b65e.tar.bz2 |
[svn-r11449] Purpose:
Bug fix
Description:
Fixed typo in configure.in.
Platforms tested:
SX6, mir
Misc. update:
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -50206,7 +50206,7 @@ fi fi -if test ${hdf5_cv_ldouble_to_integer_accurate} = "yes"; then +if test "${hdf5_cv_ldouble_to_integer_accurate}" = "yes"; then cat >>confdefs.h <<\_ACEOF #define LDOUBLE_TO_INTEGER_ACCURATE 1 diff --git a/configure.in b/configure.in index 5415c8d..d116d84 100644 --- a/configure.in +++ b/configure.in @@ -2548,7 +2548,7 @@ else AC_CACHE_VAL([hdf5_cv_ldouble_to_integer_accurate], [hdf5_cv_ldouble_to_integer_accurate=yes]) fi -if test ${hdf5_cv_ldouble_to_integer_accurate} = "yes"; then +if test "${hdf5_cv_ldouble_to_integer_accurate}" = "yes"; then AC_DEFINE([LDOUBLE_TO_INTEGER_ACCURATE], [1], [Define if your system can convert long double to integers accurately.]) AC_MSG_RESULT([yes]) |