diff options
author | 2001-06-18 18:08:14 +0000 | |
---|---|---|
committer | 2001-06-18 18:08:14 +0000 | |
commit | 96d39b13d948db64eb869c6768a61f20a7f9df4a (patch) | |
tree | eb3d69f3fb1158493fdebb03e443f59017c9491b /lib/libc | |
parent | Fix a char vs. u_char problem I introduced in the last commit. (diff) | |
download | wireguard-openbsd-96d39b13d948db64eb869c6768a61f20a7f9df4a.tar.xz wireguard-openbsd-96d39b13d948db64eb869c6768a61f20a7f9df4a.zip |
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" |