From aeeea525ca5621255317297061056cc49ae0ba00 Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Wed, 17 Dec 2008 15:18:09 +0100 Subject: [PATCH] == is not a portable shell operator --- src/configure | 2 +- src/configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/configure b/src/configure index bc846d63d..cd433f0c3 100755 --- a/src/configure +++ b/src/configure @@ -5004,7 +5004,7 @@ if test "${with_fpe}" != yes; then _ACEOF fi -if test "${with_signed_zero}" == yes; then +if test "${with_signed_zero}" = yes; then cat >>confdefs.h <<\_ACEOF #define ECL_SIGNED_ZERO 1 _ACEOF diff --git a/src/configure.in b/src/configure.in index d97dbe3eb..ffbf189b7 100644 --- a/src/configure.in +++ b/src/configure.in @@ -430,7 +430,7 @@ dnl Deactivate floating point exceptions if asked to if test "${with_fpe}" != yes; then AC_DEFINE(ECL_AVOID_FPE_H) fi -if test "${with_signed_zero}" == yes; then +if test "${with_signed_zero}" = yes; then AC_DEFINE(ECL_SIGNED_ZERO) fi