diff options
author | 2004-02-07 23:49:05 +0000 | |
---|---|---|
committer | 2004-02-07 23:49:05 +0000 | |
commit | 13ec83d8032e541f0a76febcc57f6f26af071f8f (patch) | |
tree | 0b687735f433468c89a8ab949213f808924e2863 | |
parent | 4096 blocks here; from mickey (diff) | |
download | wireguard-openbsd-13ec83d8032e541f0a76febcc57f6f26af071f8f.tar.xz wireguard-openbsd-13ec83d8032e541f0a76febcc57f6f26af071f8f.zip |
do not build AFS on amd64 yet
-rw-r--r-- | share/mk/bsd.own.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index b82f915db7f..1e8d4726ee4 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.own.mk,v 1.73 2004/02/01 06:02:13 drahn Exp $ +# $OpenBSD: bsd.own.mk,v 1.74 2004/02/07 23:49:05 deraadt Exp $ # $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $ # Host-specific overrides @@ -20,7 +20,7 @@ YP?= yes # integrated support for libwrap. TCP_WRAPPERS?= yes # Set `AFS` to `yes' to build with AFS support. -.if (${MACHINE_ARCH} == "m88k") +.if (${MACHINE_ARCH} == "m88k") || (${MACHINE_ARCH} == "x86_64") AFS?= no .else AFS?= yes |