Fix negative logic error. We want gnueabihf ABI when we're NOT

requesting soft float ABI.

Noticed by: bdrewery
This commit is contained in:
Warner Losh 2016-05-18 22:50:25 +00:00
parent 1c8bdd84b8
commit 14e5b32daf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=300171

View File

@ -459,7 +459,7 @@ BFLAGS+= -B${CROSS_BINUTILS_PREFIX}
BFLAGS+= -B${WORLDTMP}/usr/bin BFLAGS+= -B${WORLDTMP}/usr/bin
.endif .endif
.if ${TARGET} == "arm" .if ${TARGET} == "arm"
.if ${TARGET_ARCH:Marmv6*} != "" && ${TARGET_CPUTYPE:M*soft*} != "" .if ${TARGET_ARCH:Marmv6*} != "" && ${TARGET_CPUTYPE:M*soft*} == ""
TARGET_ABI= gnueabihf TARGET_ABI= gnueabihf
.else .else
TARGET_ABI= gnueabi TARGET_ABI= gnueabi