From c71f1e9657cf348abe7ee30bfb1aba97d2eb0914 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Wed, 5 Jan 2011 19:10:24 +0000 Subject: [PATCH] Fix the check for -Wfloat-equal --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index aec3419f..e8c036c3 100644 --- a/configure.in +++ b/configure.in @@ -1170,7 +1170,7 @@ if test "x$GCC" = "xyes"; then case " $CFLAGS " in *[\ \ ]-Wfloat-equal[\ \ ]*) ;; - *) if cc_supports_flag -Wfloat-equals; then + *) if cc_supports_flag -Wfloat-equal; then CFLAGS="$CFLAGS -Wfloat-equal" fi ;;