diff options
author | 2003-08-08 07:37:15 +0000 | |
---|---|---|
committer | 2003-08-08 07:37:15 +0000 | |
commit | 401c801d722c71b8a91e543547d7429956b8eae8 (patch) | |
tree | cf9ac4d82c262c1278e7ae04b17581db0275ea61 | |
parent | On some architectures, being too optimistic in preserve_subexpressions_p(), (diff) | |
download | wireguard-openbsd-401c801d722c71b8a91e543547d7429956b8eae8.tar.xz wireguard-openbsd-401c801d722c71b8a91e543547d7429956b8eae8.zip |
put COPTS in CFLAGS; idea from miod
-rw-r--r-- | sys/arch/i386/stand/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/Makefile.inc b/sys/arch/i386/stand/Makefile.inc index 8eebeabcd97..313b680bd91 100644 --- a/sys/arch/i386/stand/Makefile.inc +++ b/sys/arch/i386/stand/Makefile.inc @@ -1,6 +1,6 @@ -# $OpenBSD: Makefile.inc,v 1.33 2003/07/19 00:03:52 david Exp $ +# $OpenBSD: Makefile.inc,v 1.34 2003/08/08 07:37:15 deraadt Exp $ -CFLAGS=${DEBUG} -Os -Wall -Werror +CFLAGS=${DEBUG} ${COPTS} -Os -Wall -Werror CFLAGS+= -fno-stack-protector CPPFLAGS+=-I${S} -I${SADIR}/libsa -I. -I${.CURDIR} SACFLAGS=-D_STANDALONE |