diff options
Diffstat (limited to 'bin')
-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 4c2077fa403..edb033a30c9 100644 --- a/bin/ksh/Makefile +++ b/bin/ksh/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.16 2004/01/09 17:10:07 brad Exp $ +# $OpenBSD: Makefile,v 1.17 2004/02/10 02:43:48 deraadt 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} == "amd64") +CFLAGS+=-O0 +.endif + CLEANFILES+= siglist.out emacs.out LINKS= ${BINDIR}/ksh ${BINDIR}/rksh |