Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 May 2016 22:50:25 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r300171 - head
Message-ID:  <201605182250.u4IMoP8R060699@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Wed May 18 22:50:25 2016
New Revision: 300171
URL: https://svnweb.freebsd.org/changeset/base/300171

Log:
  Fix negative logic error. We want gnueabihf ABI when we're NOT
  requesting soft float ABI.
  
  Noticed by: bdrewery

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Wed May 18 22:24:52 2016	(r300170)
+++ head/Makefile.inc1	Wed May 18 22:50:25 2016	(r300171)
@@ -459,7 +459,7 @@ BFLAGS+=	-B${CROSS_BINUTILS_PREFIX}
 BFLAGS+=	-B${WORLDTMP}/usr/bin
 .endif
 .if ${TARGET} == "arm"
-.if ${TARGET_ARCH:Marmv6*} != "" && ${TARGET_CPUTYPE:M*soft*} != ""
+.if ${TARGET_ARCH:Marmv6*} != "" && ${TARGET_CPUTYPE:M*soft*} == ""
 TARGET_ABI=	gnueabihf
 .else
 TARGET_ABI=	gnueabi



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605182250.u4IMoP8R060699>