summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2004-11-22 18:51:24 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2004-11-22 18:51:24 +0000
commit54546f0904fe338bfdfb7e3e96c58895161363c6 (patch)
tree91a1e59a41febbaaf3c07129405fbce56755938d
parentee87151cb888935f3264f4d544d95aaabd6ddb92 (diff)
mac68k is not so happy with -pipe, disable for now.
-rw-r--r--share/mk/sys.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mk/sys.mk b/share/mk/sys.mk
index afc5f4f7e66..eb335fedd58 100644
--- a/share/mk/sys.mk
+++ b/share/mk/sys.mk
@@ -1,4 +1,4 @@
-# $OpenBSD: sys.mk,v 1.41 2004/11/08 21:58:59 deraadt Exp $
+# $OpenBSD: sys.mk,v 1.42 2004/11/22 18:51:23 miod Exp $
# $NetBSD: sys.mk,v 1.27 1996/04/10 05:47:19 mycroft Exp $
# @(#)sys.mk 5.11 (Berkeley) 3/13/91
@@ -32,7 +32,7 @@ LINK.S?= ${CC} ${AFLAGS} ${CPPFLAGS} ${LDFLAGS}
CC?= cc
-.if ${MACHINE_ARCH} != "m88k"
+.if ${MACHINE_ARCH} != "m88k" && ${MACHINE} != "mac68k"
PIPE?= -pipe
.endif