== is not a portable shell operator

This commit is contained in:
Juan Jose Garcia Ripoll 2008-12-17 15:18:09 +01:00
parent 4663183075
commit aeeea525ca
2 changed files with 2 additions and 2 deletions

2
src/configure vendored
View file

@ -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

View file

@ -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