From: Simon McVittie Date: Wed, 5 Jan 2011 19:10:24 +0000 (+0000) Subject: Fix the check for -Wfloat-equal X-Git-Tag: dbus-1.4.4~40^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c71f1e9657cf348abe7ee30bfb1aba97d2eb0914;p=thirdparty%2Fdbus.git Fix the check for -Wfloat-equal --- diff --git a/configure.in b/configure.in index aec3419f7..e8c036c35 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 ;;