svn commit: r282092 - head/lib/msun/tests

Andrew Turner andrew at FreeBSD.org
Mon Apr 27 13:57:40 UTC 2015


Author: andrew
Date: Mon Apr 27 13:57:39 2015
New Revision: 282092
URL: https://svnweb.freebsd.org/changeset/base/282092

Log:
  Correct the spelling of MACHINE_CPUARCH, MACHINE_CPU is not set on arm64.

Modified:
  head/lib/msun/tests/Makefile

Modified: head/lib/msun/tests/Makefile
==============================================================================
--- head/lib/msun/tests/Makefile	Mon Apr 27 13:56:20 2015	(r282091)
+++ head/lib/msun/tests/Makefile	Mon Apr 27 13:57:39 2015	(r282092)
@@ -7,7 +7,7 @@ TESTSRC=	${SRCTOP}/contrib/netbsd-tests/
 TESTSDIR=	${TESTSBASE}/lib/msun
 
 .if ${MACHINE} == "sparc" || ${MACHINE} == "i386" \
-	|| ${MACHINE} == "amd64" || ${MACHINE_CPU} == "arm"	\
+	|| ${MACHINE} == "amd64" || ${MACHINE_CPUARCH} == "arm"	\
 	|| ${MACHINE} == "sparc64"
 CFLAGS+=	-DHAVE_FENV_H
 .endif


More information about the svn-src-all mailing list