diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 1999-09-28 02:18:31 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 1999-09-28 02:18:31 +0000 |
commit | 61a57c6cc97f60fd85aa89be7cc44198db871c2a (patch) | |
tree | 37e55ecaf82d2c742b2bc92886448483fde71ff3 | |
parent | 73cf0602f0e81640c80e5cfa22557281b533b4ee (diff) |
disable optimization on 88k
-rw-r--r-- | bin/ksh/Makefile | 6 |
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 |