summaryrefslogtreecommitdiff
path: root/sys/compat/common
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2004-09-16 13:57:48 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2004-09-16 13:57:48 +0000
commitc9d3630eb8f4f221c8a05f3592f1614e4f504346 (patch)
treeb11932aa6dff486b0bb5a53a0fa3af30d8e6a58d /sys/compat/common
parentb4ecdcf43ecb8683710d4a3707c03494abc851da (diff)
No kern_ipc_10 on mips64.
Diffstat (limited to 'sys/compat/common')
-rw-r--r--sys/compat/common/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/common/Makefile b/sys/compat/common/Makefile
index 47cad8c0825..8ac83e47cef 100644
--- a/sys/compat/common/Makefile
+++ b/sys/compat/common/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.18 2004/07/13 21:04:29 millert Exp $
+# $OpenBSD: Makefile,v 1.19 2004/09/16 13:57:47 miod Exp $
# $NetBSD: Makefile,v 1.8 1996/05/18 15:52:19 christos Exp $
LIB= compat
@@ -17,7 +17,7 @@ SRCS= compat_exec.c compat_util.c compat_dir.c compat_vm.c \
# really, all machines where sizeof(int) != sizeof(long)
.if (${MACHINE_ARCH} != "alpha") && (${MACHINE_ARCH} != "amd64") && \
- (${MACHINE_ARCH} != "sparc64")
+ (${MACHINE_ARCH} != "mips64") && (${MACHINE_ARCH} != "sparc64")
SRCS+= kern_ipc_10.c
.endif