diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-04-25 21:48:41 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-04-25 21:48:41 +0000 |
commit | a0826643fb26024e668fc000d22918954ddd5225 (patch) | |
tree | 6e2ac11e301f57f4034ed871a4fb14cd03350e9e /sys | |
parent | b31bef73242734947d618a2ca1ca04fa44e0ea5d (diff) |
disable -Oz compile for SMALL_KERNEL w/ comment why
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/landisk/conf/Makefile.landisk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/landisk/conf/Makefile.landisk b/sys/arch/landisk/conf/Makefile.landisk index 3e6496b2d15..96edf9750e1 100644 --- a/sys/arch/landisk/conf/Makefile.landisk +++ b/sys/arch/landisk/conf/Makefile.landisk @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.landisk,v 1.78 2019/04/14 14:07:06 deraadt Exp $ +# $OpenBSD: Makefile.landisk,v 1.79 2019/04/25 21:48:40 deraadt Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -37,7 +37,7 @@ CMACHFLAGS+= -fno-stack-protector .endif .if ${IDENT:M-DSMALL_KERNEL} SORTR= cat -COPTS?= -Oz +#COPTS?= -Oz # locks up during boot .endif DEBUG?= -g |