diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-05-05 15:20:29 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-05-05 15:20:29 +0000 |
commit | 32c621f40331a5c8df5534a38570305da4244cf6 (patch) | |
tree | 9f2d7e0822307b693e8ff632806c1522a34b3199 | |
parent | 276ebb463008ddf9d01ca1631c34a02962b55ddc (diff) |
Check MACHINE for hp300, not MACHINE_ARCH (which will be m68k)
-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 d4c13f59edb..929595fab88 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.own.mk,v 1.42 2001/05/04 22:49:00 aaron Exp $ +# $OpenBSD: bsd.own.mk,v 1.43 2001/05/05 15:20:28 millert Exp $ # $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $ # Host-specific overrides @@ -9,7 +9,7 @@ .endif # XXX - This is temporary until everyone uses UVM -.if (${MACHINE_ARCH} == "sparc") || (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "vax") || (${MACHINE} == "amiga") || (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "powerpc") || (${MACHINE_ARCH} == "m88k") || (${MACHINE_ARCH} == "hp300") +.if (${MACHINE_ARCH} == "sparc") || (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "vax") || (${MACHINE} == "amiga") || (${MACHINE} == "hp300") || (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "powerpc") || (${MACHINE_ARCH} == "m88k") UVM?= yes .else UVM?= no |