summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsmurph <smurph@openbsd.org>1999-09-28 02:18:30 +0000
committersmurph <smurph@openbsd.org>1999-09-28 02:18:30 +0000
commitb6e9d59d3a5a8d769936c4a4e5c51ba1fa089f7d (patch)
treee7c2bed405d6e8378b2c559497e0e557a66f971a
parentSet j = i after arc4random key schedule to be more like arc4 stream cipher; (diff)
downloadwireguard-openbsd-b6e9d59d3a5a8d769936c4a4e5c51ba1fa089f7d.tar.xz
wireguard-openbsd-b6e9d59d3a5a8d769936c4a4e5c51ba1fa089f7d.zip
disable optimization on 88k
-rw-r--r--bin/ksh/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/ksh/Makefile b/bin/ksh/Makefile
index c5c1b33dc74..e777e7b9405 100644
--- a/bin/ksh/Makefile
+++ b/bin/ksh/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.11 1999/06/15 01:18:32 millert Exp $
+# $OpenBSD: Makefile,v 1.12 1999/09/28 02:18:30 smurph Exp $
PROG= ksh
SRCS= alloc.c c_ksh.c c_sh.c c_test.c c_ulimit.c edit.c emacs.c \
@@ -10,6 +10,10 @@ DEFS= -DHAVE_CONFIG_H -Wall -Wno-unused
CFLAGS+=${DEFS} -I. -I${.CURDIR} -DKSH
MAN= ksh.1 sh.1
+.if (${MACHINE_ARCH} == "m88k")
+CFLAGS+=-O0
+.endif
+
CLEANFILES+= siglist.out emacs.out
LINKS= ${BINDIR}/ksh ${BINDIR}/rksh