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 /etc | |
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 'etc')
-rw-r--r-- | etc/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/Makefile b/etc/Makefile index 15bd5e1198d..5218decb3e4 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.199 2004/02/16 19:03:30 miod Exp $ +# $OpenBSD: Makefile,v 1.200 2004/02/27 17:36:13 deraadt Exp $ TZDIR= /usr/share/zoneinfo LOCALTIME= Canada/Mountain @@ -25,8 +25,8 @@ BIN1= bootptab changelist ccd.conf csh.cshrc csh.login csh.logout \ .if ${MACHINE} == "alpha" || ${MACHINE} == "hppa" || \ ${MACHINE} == "i386" || ${MACHINE} == "macppc" || \ ${MACHINE} == "pegasos" || ${MACHINE} == "sparc" || \ - ${MACHINE} == "sparc64" || ${MACHINE_ARCH} == "x86_64" || \ - ${MACHINE} == "cats" + ${MACHINE} == "sparc64" || ${MACHINE} == "amd64" || \ + ${MACHINE} == "cats" || BIN1+= wsconsctl.conf .endif @@ -377,7 +377,7 @@ distrib: DHSIZE=1024 1536 2048 3072 4096 update-moduli: ( \ - echo '# $$OpenBSD: Makefile,v 1.199 2004/02/16 19:03:30 miod Exp $$'; \ + echo '# $$OpenBSD: Makefile,v 1.200 2004/02/27 17:36:13 deraadt Exp $$'; \ echo '# Time Type Tests Tries Size Generator Modulus'; \ ( for i in ${DHSIZE}; do \ ssh-keygen -b $$i -G /dev/stdout; \ |