diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-06 06:38:03 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-06 06:38:03 +0000 |
commit | 4b9b10e14d290287c051852e5013aaec60e8f5a4 (patch) | |
tree | 5d49a22ab2b1edb0696c0242e3f027257e8dd17a /share/mk | |
parent | e25eb6048c5c5ab1481e24c5595905b483564bcc (diff) |
i *SAID* this could go in, now it is days later, I will do it myself
Diffstat (limited to 'share/mk')
-rw-r--r-- | share/mk/bsd.own.mk | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index e9df42b950f..0a6eb1a51ff 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.own.mk,v 1.87 2004/07/24 19:14:08 miod Exp $ +# $OpenBSD: bsd.own.mk,v 1.88 2004/09/06 06:38:02 deraadt Exp $ # $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $ # Host-specific overrides @@ -32,9 +32,10 @@ ELF_TOOLCHAIN?= yes .endif # do the dew -.if ${MACHINE} == "amd64" || (${MACHINE_ARCH} == "arm" || \ +.if ${MACHINE} == "amd64" || ${MACHINE_ARCH} == "arm" || \ ${MACHINE_ARCH} == "hppa" || ${MACHINE_ARCH} == "hppa64" || \ - ${MACHINE_ARCH} == "sparc64" || ${MACHINE_ARCH} == "x86_64") + ${MACHINE_ARCH} == "sparc64" || ${MACHINE_ARCH} == "x86_64" || \ + ${MACHINE_ARCH} == "mips64" USE_GCC3?=yes .else USE_GCC3?=no |