index
:
openwrt.git
OpenWrt Source Repository
log msg
author
committer
range
feature/odhcpd_odhcp6c_udhcpc-capsdrop
linksys3200ac-master
master
summary
refs
log
tree
commit
diff
path:
root
/
include
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
author
Imre Kaloz <kaloz@openwrt.org>
2014-02-09 13:46:16 +0000
committer
Imre Kaloz <kaloz@openwrt.org>
2014-02-09 13:46:16 +0000
commit
4974d4f30c454e290a34ae0ccb09139d60007625
(
patch
)
tree
c6717fd6a6d1398025f7d661503faddce6a1842f
/
include
parent
f198091074175c3cb9e4ef6cdf131926ecff4823
(
diff
)
fix logic error on fpu cflags selection
Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 39547
Diffstat
(limited to 'include')
-rw-r--r--
include/target.mk
2
1 files changed, 1 insertions, 1 deletions
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