diff options
author | imp <imp@FreeBSD.org> | 2010-08-08 02:45:14 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2010-08-08 02:45:14 +0000 |
commit | 083b718d7b5df38d691ccc7eaae31ef8da7a4f88 (patch) | |
tree | 6d7aca85703e7024708f8575d1d5e65f30228c31 /usr.sbin | |
parent | 53521b51507eb171400e2c3246d016fc637d03e2 (diff) | |
download | FreeBSD-src-083b718d7b5df38d691ccc7eaae31ef8da7a4f88.zip FreeBSD-src-083b718d7b5df38d691ccc7eaae31ef8da7a4f88.tar.gz |
This isn't WARNS=6 safe. It fails to build on mips. Retore old
WARNS?=3 until that's resolved.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/syslogd/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.sbin/syslogd/Makefile b/usr.sbin/syslogd/Makefile index 9b01009..4764013 100644 --- a/usr.sbin/syslogd/Makefile +++ b/usr.sbin/syslogd/Makefile @@ -12,6 +12,8 @@ SRCS= syslogd.c ttymsg.c DPADD= ${LIBUTIL} LDADD= -lutil +WARNS?= 3 + .if ${MK_INET6_SUPPORT} != "no" CFLAGS+= -DINET6 .endif |