diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-06-13 19:02:15 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-06-13 19:02:15 +0000 |
commit | 6a7f11e2b7c957d49c970b86b15be188d688bde4 (patch) | |
tree | 304795e11e10ceb84e2b0ff19ad4bfbfbfa9de9e | |
parent | b6b8d4a3878a679837d75786b896ca2b14c9cca3 (diff) |
Reverse the logic of setting UVM. Instead of listing all archs that have it,
just list the three that don't.
-rw-r--r-- | share/mk/bsd.own.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index d57ddad3f5f..70fcba6a7e2 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.own.mk,v 1.45 2001/06/13 12:47:00 art Exp $ +# $OpenBSD: bsd.own.mk,v 1.46 2001/06/13 19:02:14 art Exp $ # $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $ # Host-specific overrides @@ -9,10 +9,10 @@ .endif # XXX - This is temporary until everyone uses UVM -.if (${MACHINE_ARCH} == "sparc") || (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "vax") || (${MACHINE} == "amiga") || (${MACHINE} == "hp300") || (${MACHINE} == "mac68k") || (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "powerpc") || (${MACHINE_ARCH} == "m88k") -UVM?= yes -.else +.if (${MACHINE} == "sun3") || (${MACHINE} == "pmax") || (${MACHINE} == "mvme68k") UVM?= no +.else +UVM?= yes .endif # Set `SKEY' to `yes' to build with support for S/key authentication. |