From: Imre Kaloz Date: Sun, 9 Feb 2014 13:46:16 +0000 (+0000) Subject: fix logic error on fpu cflags selection X-Git-Tag: reboot~7980 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=4974d4f30c454e290a34ae0ccb09139d60007625 fix logic error on fpu cflags selection Signed-off-by: Imre Kaloz SVN-Revision: 39547 --- diff --git a/include/target.mk b/include/target.mk index 51c1a59dca..20347e9b01 100644 --- a/include/target.mk +++ b/include/target.mk @@ -231,7 +231,7 @@ ifeq ($(DUMP),1) CPU_CFLAGS_fa526 = -march=armv4 -mtune=fa526 CPU_CFLAGS_mpcore = -march=armv6k -mtune=mpcore CPU_CFLAGS_xscale = -march=armv5te -mtune=xscale - ifneq ($(CONFIG_SOFT_FLOAT),) + ifeq ($(CONFIG_SOFT_FLOAT),) CPU_CFLAGS_vfp = -mfpu=vfp CPU_CFLAGS_vfpv3 = -mfpu=vfpv3-d16 endif