diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-06-18 18:08:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-06-18 18:08:15 +0000 |
commit | 2895f33abe12b8048ada274209fed47cd02cf440 (patch) | |
tree | eb1c2d74173f828a12304d690441a89cfddef369 /lib/libc | |
parent | 342f76effd4f44a3f7f16d254d045760352317da (diff) |
compile libc with -Werror since any warnings gcc produces without extra -Wfoo directives is something we care about
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/Makefile b/lib/libc/Makefile index 938fbd48d54..e90ea9dbed5 100644 --- a/lib/libc/Makefile +++ b/lib/libc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.17 2000/10/04 06:06:00 d Exp $ +# $OpenBSD: Makefile,v 1.18 2001/06/18 18:08:14 millert Exp $ # # All library objects contain sccsid strings by default; they may be # excluded as a space-saving measure. To produce a library that does @@ -18,6 +18,7 @@ LIB=c LINTFLAGS=-z CLEANFILES+=tags +CFLAGS+=-Werror LIBCSRCDIR=${.CURDIR} .include "${LIBCSRCDIR}/Makefile.inc" |