summaryrefslogtreecommitdiff
path: root/sys/compat
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-08-19 18:35:50 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-08-19 18:35:50 +0000
commita6336792261c5ced12fae30ecb141a146c0ca6f1 (patch)
tree92f81ff447239a84c09f3b78118b2a70649c98ea /sys/compat
parent63d7f66c9dee5d4460de8ed6fb973734032dea7a (diff)
correct the logic.
Diffstat (limited to 'sys/compat')
-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 a772d0c5990..8e203f71f40 100644
--- a/sys/compat/common/Makefile
+++ b/sys/compat/common/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.10 2001/08/19 18:29:02 art Exp $
+# $OpenBSD: Makefile,v 1.11 2001/08/19 18:35:49 art Exp $
# $NetBSD: Makefile,v 1.8 1996/05/18 15:52:19 christos Exp $
LIB= compat
@@ -12,7 +12,7 @@ SRCS= compat_exec.c compat_util.c compat_dir.c compat_vm.c kern_exit_43.c \
vfs_syscalls_25.c vfs_syscalls_43.c vm_43.c
# really, all machines where sizeof(int) != sizeof(long)
-.if (${MACHINE_ARCH} != "alpha") || (${MACHINE_ARCH} != "sparc64")
+.if (${MACHINE_ARCH} != "alpha") && (${MACHINE_ARCH} != "sparc64")
SRCS+= kern_ipc_10.c
.endif