diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-02-07 23:49:06 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-02-07 23:49:06 +0000 |
commit | 9af9f9c63736a116bd2919417bdef06365b1a4fe (patch) | |
tree | acde82006c974acd1f61a904df809a5ada2b50f2 | |
parent | ddbf69d2dba617096b7cc746f454bbd469c1db93 (diff) |
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 |