diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-02-27 17:36:19 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-02-27 17:36:19 +0000 |
commit | bf0a65b8ba35f3b89700a10c7eb23f2c8dc212cb (patch) | |
tree | c14e90f29f6ed57b9358529c8ef66d4b69c29a0f /lib/libarch/amd64/Makefile | |
parent | cadcabe0265db6753eccec3bcc53bdc5b837cc3d (diff) |
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/libarch/amd64/Makefile')
-rw-r--r-- | lib/libarch/amd64/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libarch/amd64/Makefile b/lib/libarch/amd64/Makefile index b32bd7996b8..ec8831b5ccf 100644 --- a/lib/libarch/amd64/Makefile +++ b/lib/libarch/amd64/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2004/02/26 00:10:54 deraadt Exp $ +# $OpenBSD: Makefile,v 1.2 2004/02/27 17:36:14 deraadt Exp $ # $NetBSD: Makefile,v 1.1 1996/02/21 02:45:47 jtk Exp $ MAN+= x86_64_get_ldt.2 \ @@ -7,8 +7,8 @@ MANSUBDIR=amd64 MLINKS+=x86_64_get_ldt.2 x86_64_set_ldt.2 \ x86_64_get_ioperm.2 x86_64_set_ioperm.2 -.if ${MACHINE_ARCH} == "x86_64" -.PATH: ${LIBC}/x86_64 +.if ${MACHINE_ARCH} == "amd64" +.PATH: ${LIBC}/amd64 NOPIC= SRCS+= x86_64_get_ldt.c x86_64_set_ldt.c \ x86_64_iopl.c x86_64_get_ioperm.c x86_64_set_ioperm.c |