Fix the check for -Wfloat-equal

This commit is contained in:
Simon McVittie 2011-01-05 19:10:24 +00:00
parent d83d74dc68
commit c71f1e9657

View file

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