diff options
author | andrew <andrew@FreeBSD.org> | 2015-04-27 13:57:39 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2015-04-27 13:57:39 +0000 |
commit | 4880bcc586a5a09d52073945ea83d07b854238d1 (patch) | |
tree | ff0424f760ce4f37b9215cf4b6c4d865f8bbac6e /lib/msun | |
parent | d2f646661f9aa63fa7fe77703c1152ca9b795f1c (diff) | |
download | FreeBSD-src-4880bcc586a5a09d52073945ea83d07b854238d1.zip FreeBSD-src-4880bcc586a5a09d52073945ea83d07b854238d1.tar.gz |
Correct the spelling of MACHINE_CPUARCH, MACHINE_CPU is not set on arm64.
Diffstat (limited to 'lib/msun')
-rw-r--r-- | lib/msun/tests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msun/tests/Makefile b/lib/msun/tests/Makefile index cb06868..b07be2d 100644 --- a/lib/msun/tests/Makefile +++ b/lib/msun/tests/Makefile @@ -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 |