diff options
author | deraadt <> | 2004-02-27 17:36:18 +0000 |
---|---|---|
committer | deraadt <> | 2004-02-27 17:36:18 +0000 |
commit | 75c3b2d2e6ae84ad1232686b18e5e88996c2cbbe (patch) | |
tree | 12a6bcf5722ef60c37854745c0643749af0b3b6d /src/usr.sbin | |
parent | dde65cb321ea3e28fb0e4ef7f6c29c0fbf57fe5d (diff) | |
download | openbsd-75c3b2d2e6ae84ad1232686b18e5e88996c2cbbe.tar.gz openbsd-75c3b2d2e6ae84ad1232686b18e5e88996c2cbbe.tar.bz2 openbsd-75c3b2d2e6ae84ad1232686b18e5e88996c2cbbe.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 'src/usr.sbin')
-rw-r--r-- | src/usr.sbin/openssl/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr.sbin/openssl/Makefile b/src/usr.sbin/openssl/Makefile index 0acdf58594..0413ca3117 100644 --- a/src/usr.sbin/openssl/Makefile +++ b/src/usr.sbin/openssl/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.15 2004/01/28 17:46:05 deraadt Exp $ | 1 | # $OpenBSD: Makefile,v 1.16 2004/02/27 17:36:18 deraadt Exp $ |
2 | 2 | ||
3 | PROG= openssl | 3 | PROG= openssl |
4 | LDADD= -lssl -lcrypto | 4 | LDADD= -lssl -lcrypto |
@@ -9,8 +9,8 @@ SSLEAYDIST= lib/libssl/src | |||
9 | SSLEAY_SRC= ${.CURDIR}/../../${SSLEAYDIST}/apps | 9 | SSLEAY_SRC= ${.CURDIR}/../../${SSLEAYDIST}/apps |
10 | SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST} | 10 | SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST} |
11 | 11 | ||
12 | .if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "x86_64") || \ | 12 | .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "vax" || \ |
13 | (${MACHINE_ARCH} == "vax") | 13 | ${MACHINE_ARCH} == "amd64" |
14 | 14 | ||
15 | CFLAGS+= -DL_ENDIAN | 15 | CFLAGS+= -DL_ENDIAN |
16 | .else | 16 | .else |