diff options
author | 2004-02-27 17:36:11 +0000 | |
---|---|---|
committer | 2004-02-27 17:36:11 +0000 | |
commit | 77fd8a68cd3e1b2ccac42e4788b2531b079f8a1a (patch) | |
tree | 3733a42dd7c7f2341b32c1aa766af8317c301adf /lib/libm | |
parent | JVC MP-XP7250 Builtin USB WLAN (diff) | |
download | wireguard-openbsd-77fd8a68cd3e1b2ccac42e4788b2531b079f8a1a.tar.xz wireguard-openbsd-77fd8a68cd3e1b2ccac42e4788b2531b079f8a1a.zip |
change amd64's MACHINE_ARCH from x86_64 to amd64. There are many many
reasons for this, quite a few of them technical, and not all of them
in response to Intel's broken ia32e crud. The gcc toolchain stays at
x86_64 for now.
Diffstat (limited to 'lib/libm')
-rw-r--r-- | lib/libm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libm/Makefile b/lib/libm/Makefile index 758eb08eb4a..992a3ed424d 100644 --- a/lib/libm/Makefile +++ b/lib/libm/Makefile @@ -1,5 +1,5 @@ # $NetBSD: Makefile,v 1.28 1995/11/20 22:06:19 jtc Exp $ -# $OpenBSD: Makefile,v 1.31 2004/02/08 18:03:48 deraadt Exp $ +# $OpenBSD: Makefile,v 1.32 2004/02/27 17:36:13 deraadt Exp $ # # @(#)Makefile 5.1beta 93/09/24 # @@ -63,7 +63,7 @@ ARCH_SRCS = e_acos.S e_asin.S e_atan2.S e_exp.S e_fmod.S e_log.S e_log10.S \ s_ilogb.S s_ilogbf.S s_log1p.S s_log1pf.S s_logb.S s_logbf.S \ s_rint.S s_rintf.S s_scalbn.S s_scalbnf.S s_significand.S \ s_significandf.S s_sin.S s_sinf.S s_tan.S s_tanf.S -.elif (${MACHINE_ARCH} == "x86_64") +.elif (${MACHINE_ARCH} == "amd64") .PATH: ${.CURDIR}/arch/x86_64 CPPFLAGS+=-I${.CURDIR}/arch/x86_64 ARCH_SRCS = e_acos.S e_asin.S e_atan2.S e_exp.S e_fmod.S e_log.S e_log10.S \ |