diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2008-06-28 14:04:31 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2008-06-28 14:04:31 +0000 |
commit | b493f1cd1601c288779632c8f0c839fd2a51124f (patch) | |
tree | 4d5932211d27c774b182c33eb7cb4fecb1234906 /usr.bin | |
parent | 9441ae21f20afd024b357b02f6b8789a777b1b4a (diff) |
revert accidental commit (nearly 2 months ago!) that
unconditionally enabled -Werror and -g
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/Makefile.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/Makefile.inc b/usr.bin/ssh/Makefile.inc index 34d76c176d3..bd2117cb9fd 100644 --- a/usr.bin/ssh/Makefile.inc +++ b/usr.bin/ssh/Makefile.inc @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile.inc,v 1.31 2008/05/08 12:21:16 djm Exp $ +# $OpenBSD: Makefile.inc,v 1.32 2008/06/28 14:04:30 djm Exp $ CFLAGS+= -I${.CURDIR}/.. CDIAGFLAGS= -Wall -CDIAGFLAGS+= -Werror +#CDIAGFLAGS+= -Werror CDIAGFLAGS+= -Wpointer-arith CDIAGFLAGS+= -Wno-uninitialized CDIAGFLAGS+= -Wstrict-prototypes @@ -13,7 +13,7 @@ CDIAGFLAGS+= -Wsign-compare CDIAGFLAGS+= -Wbounded CDIAGFLAGS+= -Wshadow -DEBUG=-g +#DEBUG=-g #CFLAGS+= -DSMARTCARD #LDADD+= -lsectok |