diff options
-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]) |