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

This commit is contained in:
Andrew Turner 2015-04-27 13:57:39 +00:00
parent ae99516732
commit 4e78be73ba
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=282092

View File

@ -7,7 +7,7 @@ TESTSRC= ${SRCTOP}/contrib/netbsd-tests/lib/libm
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