diff options
author | keramida <keramida@FreeBSD.org> | 2005-05-18 12:19:50 +0000 |
---|---|---|
committer | keramida <keramida@FreeBSD.org> | 2005-05-18 12:19:50 +0000 |
commit | 4bf80fbbcff1c8b9d5088dd0d5195293ee0f09da (patch) | |
tree | bafe783e8d293ca31923faa1f273194a81485184 /libexec | |
parent | b543d49d860bc68722b7df6e9c1248f45ecd4f40 (diff) | |
download | FreeBSD-src-4bf80fbbcff1c8b9d5088dd0d5195293ee0f09da.zip FreeBSD-src-4bf80fbbcff1c8b9d5088dd0d5195293ee0f09da.tar.gz |
Switch to WARNS=2 instead of tinkering directly with CFLAGS (level 2 was
picked because higher warn levels are broken for ftp-proxy at the moment).
Approved by: mlaier
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/ftp-proxy/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/ftp-proxy/Makefile b/libexec/ftp-proxy/Makefile index 4aa4684..e229001 100644 --- a/libexec/ftp-proxy/Makefile +++ b/libexec/ftp-proxy/Makefile @@ -7,6 +7,6 @@ MAN= ftp-proxy.8 SRCS= ftp-proxy.c getline.c util.c -CFLAGS+= -Wall -Werror +WARNS?= 2 .include <bsd.prog.mk> |