Author: kevans
Date: Thu Oct  1 01:10:51 2020
New Revision: 366304
URL: https://svnweb.freebsd.org/changeset/base/366304

Log:
  Do a sweep and remove most WARNS=6 settings
  
  Repeating the default WARNS here makes it slightly more difficult to
  experiment with default WARNS changes, e.g. if we did something absolutely
  bananas and introduced a WARNS=7 and wanted to try lifting the default to
  that.
  
  Drop most of them; there is one in the blake2 kernel module, but I suspect
  it should be dropped -- the default WARNS in the rest of the build doesn't
  currently apply to kernel modules, and I haven't put too much thought into
  whether it makes sense to make it so.

Modified:
  head/cddl/Makefile.inc
  head/gnu/usr.bin/dialog/Makefile
  head/lib/googletest/Makefile.inc
  head/lib/libcam/tests/Makefile
  head/lib/libcrypt/tests/Makefile
  head/lib/libiconv_modules/Makefile.inc
  head/lib/libkvm/Makefile
  head/lib/libkvm/tests/Makefile
  head/lib/libpathconv/tests/Makefile
  head/lib/libproc/tests/Makefile
  head/lib/libsbuf/tests/Makefile
  head/libexec/Makefile.inc
  head/libexec/getty/Makefile
  head/libexec/rtld-elf/Makefile
  head/libexec/rtld-elf/tests/libpythagoras/Makefile
  head/libexec/tftpd/tests/Makefile
  head/sbin/decryptcore/Makefile
  head/sbin/pfilctl/Makefile
  head/sbin/ping/tests/Makefile
  head/sbin/recoverdisk/Makefile
  head/sys/teken/demo/Makefile
  head/sys/teken/libteken/Makefile
  head/sys/teken/stress/Makefile
  head/tests/sys/Makefile.inc
  head/tests/sys/aio/Makefile
  head/tests/sys/audit/Makefile
  head/tests/sys/auditpipe/Makefile
  head/tests/sys/capsicum/Makefile
  head/tests/sys/devrandom/Makefile
  head/tests/sys/fs/fusefs/Makefile
  head/tests/sys/kern/pipe/Makefile
  head/tests/sys/mqueue/Makefile
  head/tests/sys/net/Makefile
  head/tests/sys/netinet/Makefile
  head/tests/sys/netmap/Makefile
  head/tests/sys/opencrypto/Makefile
  head/tests/sys/pjdfstest/pjdfstest/Makefile
  head/tools/regression/aio/aiop/Makefile
  head/tools/regression/bpf/bpf_filter/Makefile
  head/tools/regression/doat/Makefile
  head/tools/regression/geom_gpt/Makefile
  head/tools/regression/include/stdatomic/Makefile
  head/tools/regression/netinet/ipbroadcast/Makefile
  head/tools/regression/rpcsec_gss/Makefile
  head/tools/regression/sockets/accept_fd_leak/Makefile
  head/tools/regression/sockets/accf_data_attach/Makefile
  head/tools/regression/sockets/fstat/Makefile
  head/tools/regression/sockets/kqueue/Makefile
  head/tools/regression/sockets/listen_backlog/Makefile
  head/tools/regression/sockets/listen_kqueue/Makefile
  head/tools/regression/sockets/listenclose/Makefile
  head/tools/regression/sockets/pr_atomic/Makefile
  head/tools/regression/sockets/reconnect/Makefile
  head/tools/regression/sockets/rtsocket/Makefile
  head/tools/regression/sockets/sblock/Makefile
  head/tools/regression/sockets/sendfile/Makefile
  head/tools/regression/sockets/shutdown/Makefile
  head/tools/regression/sockets/sigpipe/Makefile
  head/tools/regression/sockets/so_setfib/Makefile
  head/tools/regression/sockets/udp_pingpong/Makefile
  head/tools/regression/sockets/unix_bindconnect/Makefile
  head/tools/regression/sockets/unix_close_race/Makefile
  head/tools/regression/sockets/unix_gc/Makefile
  head/tools/regression/sockets/unix_sendtorace/Makefile
  head/tools/regression/sockets/unix_socket/Makefile
  head/tools/regression/sockets/unix_sorflush/Makefile
  head/tools/regression/sockets/zerosend/Makefile
  head/tools/test/auxinfo/Makefile
  head/tools/test/iconv/posix/Makefile
  head/tools/test/malloc/Makefile
  head/tools/test/net/Makefile
  head/tools/test/netfibs/Makefile
  head/tools/test/ptrace/Makefile
  head/tools/tools/aac/Makefile
  head/tools/tools/cfi/Makefile
  head/tools/tools/find-sb/Makefile
  head/tools/tools/fixwhite/Makefile
  head/tools/tools/gensnmpdef/Makefile
  head/tools/tools/ifpifa/Makefile
  head/tools/tools/ioat/Makefile
  head/tools/tools/iwi/Makefile
  head/tools/tools/ncpus/Makefile
  head/tools/tools/pciroms/Makefile
  head/tools/tools/syscall_timing/Makefile
  head/tools/tools/tscdrift/Makefile
  head/tools/tools/vt/mkkfont/Makefile
  head/usr.bin/dpv/Makefile
  head/usr.bin/getconf/tests/Makefile
  head/usr.bin/mkimg/Makefile
  head/usr.bin/posixshmcontrol/Makefile
  head/usr.bin/proccontrol/Makefile
  head/usr.bin/protect/Makefile
  head/usr.sbin/bsdinstall/distextract/Makefile
  head/usr.sbin/bsdinstall/distfetch/Makefile
  head/usr.sbin/bsnmpd/tools/Makefile.inc
  head/usr.sbin/ctld/Makefile
  head/usr.sbin/iovctl/Makefile
  head/usr.sbin/mlx5tool/Makefile
  head/usr.sbin/pw/tests/Makefile

Modified: head/cddl/Makefile.inc
==============================================================================
--- head/cddl/Makefile.inc      Thu Oct  1 00:47:35 2020        (r366303)
+++ head/cddl/Makefile.inc      Thu Oct  1 01:10:51 2020        (r366304)
@@ -7,8 +7,6 @@ IGNORE_PRAGMA=  YES
 
 CFLAGS+=       -DNEED_SOLARIS_BOOLEAN
 
-WARNS?=                6
-
 # Do not lint the CDDL stuff. It is all externally maintained and
 # lint output is wasteful noise here.
 

Modified: head/gnu/usr.bin/dialog/Makefile
==============================================================================
--- head/gnu/usr.bin/dialog/Makefile    Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/gnu/usr.bin/dialog/Makefile    Thu Oct  1 01:10:51 2020        
(r366304)
@@ -7,6 +7,4 @@ LIBADD= dialog ncursesw m
 CFLAGS+= -I${.CURDIR} -I${DIALOG}
 .PATH: ${DIALOG}
 
-WARNS?=        6
-
 .include <bsd.prog.mk>

Modified: head/lib/googletest/Makefile.inc
==============================================================================
--- head/lib/googletest/Makefile.inc    Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/lib/googletest/Makefile.inc    Thu Oct  1 01:10:51 2020        
(r366304)
@@ -10,5 +10,3 @@ CXXFLAGS+=    ${GTESTS_FLAGS}
 
 # Silence warnings about usage of deprecated std::auto_ptr
 CXXWARNFLAGS+= -Wno-deprecated-declarations
-
-WARNS?=                6

Modified: head/lib/libcam/tests/Makefile
==============================================================================
--- head/lib/libcam/tests/Makefile      Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/lib/libcam/tests/Makefile      Thu Oct  1 01:10:51 2020        
(r366304)
@@ -5,6 +5,4 @@ ATF_TESTS_C+=   cam_test
 
 LIBADD+=       cam
 
-WARNS?=                6
-
 .include <bsd.test.mk>

Modified: head/lib/libcrypt/tests/Makefile
==============================================================================
--- head/lib/libcrypt/tests/Makefile    Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/lib/libcrypt/tests/Makefile    Thu Oct  1 01:10:51 2020        
(r366304)
@@ -4,7 +4,6 @@ ATF_TESTS_C+= crypt_tests
 
 NETBSD_ATF_TESTS_C+= crypt_test
 
-WARNS?=                6
 CFLAGS+= -I${.CURDIR:H}
 LIBADD=        crypt
 

Modified: head/lib/libiconv_modules/Makefile.inc
==============================================================================
--- head/lib/libiconv_modules/Makefile.inc      Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/lib/libiconv_modules/Makefile.inc      Thu Oct  1 01:10:51 2020        
(r366304)
@@ -3,7 +3,6 @@
 .PATH: ${SRCTOP}/lib/libc/iconv
 
 SHLIB_MAJOR= 4
-WARNS?=        6
 CFLAGS+= -I${SRCTOP}/lib/libc/iconv
 
 CFLAGS+=       -Dbool=_Bool

Modified: head/lib/libkvm/Makefile
==============================================================================
--- head/lib/libkvm/Makefile    Thu Oct  1 00:47:35 2020        (r366303)
+++ head/lib/libkvm/Makefile    Thu Oct  1 01:10:51 2020        (r366304)
@@ -8,8 +8,6 @@ SHLIBDIR?= /lib
 SHLIB_MAJOR=   7
 CFLAGS+=-DNO__SCCSID -I${.CURDIR}
 
-WARNS?=        6
-
 SRCS=  kvm.c kvm_cptime.c kvm_getloadavg.c \
        kvm_getswapinfo.c kvm_pcpu.c kvm_private.c kvm_proc.c kvm_vnet.c \
        kvm_minidump_aarch64.c \

Modified: head/lib/libkvm/tests/Makefile
==============================================================================
--- head/lib/libkvm/tests/Makefile      Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/lib/libkvm/tests/Makefile      Thu Oct  1 01:10:51 2020        
(r366304)
@@ -13,8 +13,6 @@ CFLAGS.kvm_read_test+=                -I${.CURDIR:H}
 
 LIBADD+=       kvm
 
-WARNS?=                6
-
 BINDIR=                ${TESTSDIR}
 
 .for t in kvm_geterr_test kvm_open_test kvm_open2_test kvm_read_test

Modified: head/lib/libpathconv/tests/Makefile
==============================================================================
--- head/lib/libpathconv/tests/Makefile Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/lib/libpathconv/tests/Makefile Thu Oct  1 01:10:51 2020        
(r366304)
@@ -3,7 +3,6 @@
 TAP_TESTS_C+=  abs2rel
 TAP_TESTS_C+=  rel2abs
 
-WARNS?=                6
 #LIBADD+=      pathconv
 #LDADD+= -L .. -lpathconv
 LDADD+= ../libpathconv.a

Modified: head/lib/libproc/tests/Makefile
==============================================================================
--- head/lib/libproc/tests/Makefile     Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/lib/libproc/tests/Makefile     Thu Oct  1 01:10:51 2020        
(r366304)
@@ -6,7 +6,6 @@ PROGS=          target_prog
 SRCS_target_prog=      target_prog.c
 BINDIR_target_prog=    ${TESTSDIR}
 
-WARNS?=                6
 LIBADD=        elf proc rtld_db util
 
 # Ensure that symbols aren't stripped from the test program, as they're needed

Modified: head/lib/libsbuf/tests/Makefile
==============================================================================
--- head/lib/libsbuf/tests/Makefile     Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/lib/libsbuf/tests/Makefile     Thu Oct  1 01:10:51 2020        
(r366304)
@@ -6,6 +6,4 @@ ATF_TESTS_C+=   sbuf_string_test
 
 LIBADD+=       sbuf util
 
-WARNS?=                6
-
 .include <bsd.test.mk>

Modified: head/libexec/Makefile.inc
==============================================================================
--- head/libexec/Makefile.inc   Thu Oct  1 00:47:35 2020        (r366303)
+++ head/libexec/Makefile.inc   Thu Oct  1 01:10:51 2020        (r366304)
@@ -3,5 +3,4 @@
 
 BINDIR?=       /usr/libexec
 
-WARNS?=                6
 WFORMAT?=      1

Modified: head/libexec/getty/Makefile
==============================================================================
--- head/libexec/getty/Makefile Thu Oct  1 00:47:35 2020        (r366303)
+++ head/libexec/getty/Makefile Thu Oct  1 01:10:51 2020        (r366304)
@@ -7,7 +7,6 @@ SRCS=   main.c init.c subr.c chat.c
 LIBADD=        util
 MAN=   gettytab.5 ttys.5 getty.8
 
-WARNS?=        6
 WFORMAT=0
 
 .include <bsd.prog.mk>

Modified: head/libexec/rtld-elf/Makefile
==============================================================================
--- head/libexec/rtld-elf/Makefile      Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/libexec/rtld-elf/Makefile      Thu Oct  1 01:10:51 2020        
(r366304)
@@ -40,7 +40,6 @@ RTLD_ARCH=    ${MACHINE_CPUARCH}
 CFLAGS+=       -I${RTLD_ELF_DIR}/${RTLD_ARCH} -I${RTLD_ELF_DIR}
 
 NO_WCAST_ALIGN=        yes
-WARNS?=                6
 INSTALLFLAGS=  -C -b
 PRECIOUSPROG=
 BINDIR=                /libexec

Modified: head/libexec/rtld-elf/tests/libpythagoras/Makefile
==============================================================================
--- head/libexec/rtld-elf/tests/libpythagoras/Makefile  Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/libexec/rtld-elf/tests/libpythagoras/Makefile  Thu Oct  1 01:10:51 
2020        (r366304)
@@ -10,7 +10,6 @@ SHLIBDIR=     ${TESTSBASE}/libexec/rtld-elf
 
 SRCS=          pythagoras.c
 
-WARNS?=                6
 LIBADD=                m
 
 .include <bsd.lib.mk>

Modified: head/libexec/tftpd/tests/Makefile
==============================================================================
--- head/libexec/tftpd/tests/Makefile   Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/libexec/tftpd/tests/Makefile   Thu Oct  1 01:10:51 2020        
(r366304)
@@ -6,7 +6,6 @@ ATF_TESTS_C=    functional
 TEST_METADATA.functional+=     timeout=15
 
 LIBADD=        util
-WARNS?=        6
 CSTD=  c11
 
 .include <bsd.test.mk>

Modified: head/sbin/decryptcore/Makefile
==============================================================================
--- head/sbin/decryptcore/Makefile      Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/sbin/decryptcore/Makefile      Thu Oct  1 01:10:51 2020        
(r366304)
@@ -8,6 +8,4 @@ MAN=    decryptcore.8
 
 CFLAGS+=-I${SRCTOP}/lib/libpjdlog
 
-WARNS?=        6
-
 .include <bsd.prog.mk>

Modified: head/sbin/pfilctl/Makefile
==============================================================================
--- head/sbin/pfilctl/Makefile  Thu Oct  1 00:47:35 2020        (r366303)
+++ head/sbin/pfilctl/Makefile  Thu Oct  1 01:10:51 2020        (r366304)
@@ -2,7 +2,6 @@
 
 PROG=  pfilctl
 SRCS=  pfilctl.c
-WARNS?=        6
 
 MAN=   pfilctl.8
 

Modified: head/sbin/ping/tests/Makefile
==============================================================================
--- head/sbin/ping/tests/Makefile       Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/sbin/ping/tests/Makefile       Thu Oct  1 01:10:51 2020        
(r366304)
@@ -1,7 +1,5 @@
 # $FreeBSD$
 
-WARNS?=        6
-
 ATF_TESTS_C+=  in_cksum_test
 SRCS.in_cksum_test= in_cksum_test.c ../utils.c
 

Modified: head/sbin/recoverdisk/Makefile
==============================================================================
--- head/sbin/recoverdisk/Makefile      Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/sbin/recoverdisk/Makefile      Thu Oct  1 01:10:51 2020        
(r366304)
@@ -5,8 +5,6 @@ PROG=   recoverdisk
 
 LDFLAGS += -lm
 
-WARNS?=        6
-
 .include <bsd.prog.mk>
 
 test:  ${PROG}

Modified: head/sys/teken/demo/Makefile
==============================================================================
--- head/sys/teken/demo/Makefile        Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/sys/teken/demo/Makefile        Thu Oct  1 01:10:51 2020        
(r366304)
@@ -4,6 +4,4 @@ PROG=   teken_demo
 LDADD= -lncursesw -lteken -lutil
 MAN=
 
-WARNS?=        6
-
 .include <bsd.prog.mk>

Modified: head/sys/teken/libteken/Makefile
==============================================================================
--- head/sys/teken/libteken/Makefile    Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/sys/teken/libteken/Makefile    Thu Oct  1 01:10:51 2020        
(r366304)
@@ -4,7 +4,6 @@ LIB=    teken
 SHLIB_MAJOR= 0
 
 CFLAGS+=-I.
-WARNS?=        6
 
 SRCDIR=        ${.CURDIR}/..
 .PATH: ${SRCDIR}

Modified: head/sys/teken/stress/Makefile
==============================================================================
--- head/sys/teken/stress/Makefile      Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/sys/teken/stress/Makefile      Thu Oct  1 01:10:51 2020        
(r366304)
@@ -4,6 +4,4 @@ PROG=   teken_stress
 LDADD= -lteken
 MAN=
 
-WARNS?=        6
-
 .include <bsd.prog.mk>

Modified: head/tests/sys/Makefile.inc
==============================================================================
--- head/tests/sys/Makefile.inc Thu Oct  1 00:47:35 2020        (r366303)
+++ head/tests/sys/Makefile.inc Thu Oct  1 01:10:51 2020        (r366304)
@@ -1,5 +1,3 @@
 # $FreeBSD$
 
-WARNS?=                6
-
 .include "${SRCTOP}/tests/Makefile.inc0"

Modified: head/tests/sys/aio/Makefile
==============================================================================
--- head/tests/sys/aio/Makefile Thu Oct  1 00:47:35 2020        (r366303)
+++ head/tests/sys/aio/Makefile Thu Oct  1 01:10:51 2020        (r366304)
@@ -17,6 +17,4 @@ LIBADD.lio_test+=     rt
 
 CFLAGS+=       -I${.CURDIR:H:H}
 
-WARNS?=        6
-
 .include <bsd.test.mk>

Modified: head/tests/sys/audit/Makefile
==============================================================================
--- head/tests/sys/audit/Makefile       Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tests/sys/audit/Makefile       Thu Oct  1 01:10:51 2020        
(r366304)
@@ -51,8 +51,6 @@ TEST_METADATA+= required_user="root"
 TEST_METADATA+= is_exclusive="true"
 TEST_METADATA+=        required_files="/etc/rc.d/auditd /dev/auditpipe"
 
-WARNS?=        6
-
 LDFLAGS+=      -lbsm -lutil
 
 CFLAGS.process-control.c+=     -I${SRCTOP}/tests

Modified: head/tests/sys/auditpipe/Makefile
==============================================================================
--- head/tests/sys/auditpipe/Makefile   Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tests/sys/auditpipe/Makefile   Thu Oct  1 01:10:51 2020        
(r366304)
@@ -6,6 +6,5 @@ ATF_TESTS_C=    auditpipe_test
 
 TEST_METADATA+= required_user="root"
 TEST_METADATA+= required_files="/dev/auditpipe"
-WARNS?=        6
 
 .include <bsd.test.mk>

Modified: head/tests/sys/capsicum/Makefile
==============================================================================
--- head/tests/sys/capsicum/Makefile    Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tests/sys/capsicum/Makefile    Thu Oct  1 01:10:51 2020        
(r366304)
@@ -52,6 +52,4 @@ WARNS.capsicum-test=  3
 
 .endif
 
-WARNS?=        6
-
 .include <bsd.test.mk>

Modified: head/tests/sys/devrandom/Makefile
==============================================================================
--- head/tests/sys/devrandom/Makefile   Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tests/sys/devrandom/Makefile   Thu Oct  1 01:10:51 2020        
(r366304)
@@ -6,7 +6,6 @@ SDEVRANDOM=     ${SRCTOP}/sys/dev/random
 .PATH:         ${SDEVRANDOM}
 
 TESTSDIR=      ${TESTSBASE}/sys/devrandom
-WARNS?=        6
 
 CFLAGS+=       -I${SRCTOP}/sys
 

Modified: head/tests/sys/fs/fusefs/Makefile
==============================================================================
--- head/tests/sys/fs/fusefs/Makefile   Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tests/sys/fs/fusefs/Makefile   Thu Oct  1 01:10:51 2020        
(r366304)
@@ -82,6 +82,4 @@ LIBADD+=      pthread
 LIBADD+=       gmock gtest
 LIBADD+=       util
 
-WARNS?=        6
-
 .include <bsd.test.mk>

Modified: head/tests/sys/kern/pipe/Makefile
==============================================================================
--- head/tests/sys/kern/pipe/Makefile   Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tests/sys/kern/pipe/Makefile   Thu Oct  1 01:10:51 2020        
(r366304)
@@ -12,6 +12,4 @@ PLAIN_TESTS_C+= pipe_reverse2_test
 PLAIN_TESTS_C+= pipe_reverse_test
 PLAIN_TESTS_C+= pipe_wraparound_test
 
-WARNS?=                6
-
 .include <bsd.test.mk>

Modified: head/tests/sys/mqueue/Makefile
==============================================================================
--- head/tests/sys/mqueue/Makefile      Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tests/sys/mqueue/Makefile      Thu Oct  1 01:10:51 2020        
(r366304)
@@ -16,6 +16,4 @@ PROGS+=               mqtest5
 
 LIBADD+=       rt
 
-WARNS?=                6
-
 .include <bsd.test.mk>

Modified: head/tests/sys/net/Makefile
==============================================================================
--- head/tests/sys/net/Makefile Thu Oct  1 00:47:35 2020        (r366303)
+++ head/tests/sys/net/Makefile Thu Oct  1 01:10:51 2020        (r366304)
@@ -25,6 +25,4 @@ PROGS+=               randsleep
 
 CFLAGS+=        -I${.CURDIR:H:H}
 
-WARNS?=                6
-
 .include <bsd.test.mk>

Modified: head/tests/sys/netinet/Makefile
==============================================================================
--- head/tests/sys/netinet/Makefile     Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tests/sys/netinet/Makefile     Thu Oct  1 01:10:51 2020        
(r366304)
@@ -20,6 +20,4 @@ ${PACKAGE}FILESMODE_redirect.py=0555
 
 MAN=
 
-WARNS?=        6
-
 .include <bsd.test.mk>

Modified: head/tests/sys/netmap/Makefile
==============================================================================
--- head/tests/sys/netmap/Makefile      Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tests/sys/netmap/Makefile      Thu Oct  1 01:10:51 2020        
(r366304)
@@ -11,6 +11,4 @@ PLAIN_TESTS_C+=       ctrl-api-test
 CFLAGS+=       -I${SRCTOP}/tests
 LIBADD+=       pthread
 
-WARNS?=                6
-
 .include <bsd.test.mk>

Modified: head/tests/sys/opencrypto/Makefile
==============================================================================
--- head/tests/sys/opencrypto/Makefile  Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tests/sys/opencrypto/Makefile  Thu Oct  1 01:10:51 2020        
(r366304)
@@ -21,6 +21,4 @@ PYMODULES=    cryptodev.py cryptodevh.py cryptotest.py
 
 ${PACKAGE}FILES+=      ${PYMODULES}
 
-WARNS?=        6
-
 .include <bsd.test.mk>

Modified: head/tests/sys/pjdfstest/pjdfstest/Makefile
==============================================================================
--- head/tests/sys/pjdfstest/pjdfstest/Makefile Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tests/sys/pjdfstest/pjdfstest/Makefile Thu Oct  1 01:10:51 2020        
(r366304)
@@ -10,6 +10,4 @@ MAN=
 
 CFLAGS+=       -I${.CURDIR:H}
 
-WARNS?=                6
-
 .include <bsd.prog.mk>

Modified: head/tools/regression/aio/aiop/Makefile
==============================================================================
--- head/tools/regression/aio/aiop/Makefile     Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/regression/aio/aiop/Makefile     Thu Oct  1 01:10:51 2020        
(r366304)
@@ -3,6 +3,4 @@
 PROG=  aiop
 MAN=
 
-WARNS= 6
-
 .include <bsd.prog.mk>

Modified: head/tools/regression/bpf/bpf_filter/Makefile
==============================================================================
--- head/tools/regression/bpf/bpf_filter/Makefile       Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/tools/regression/bpf/bpf_filter/Makefile       Thu Oct  1 01:10:51 
2020        (r366304)
@@ -46,7 +46,6 @@ SRCS+=                ${SYSDIR}/net/bpf_jitter.c      \
                ${SYSDIR}/${MACHINE_ARCH}/${MACHINE_ARCH}/bpf_jit_machdep.c
 CFLAGS+=       -DBPF_JIT_COMPILER
 LIBS+=         -lutil
-WARNS?=                6
 .else
 SRCS+=         ${SYSDIR}/net/bpf_filter.c
 WARNS?=                2

Modified: head/tools/regression/doat/Makefile
==============================================================================
--- head/tools/regression/doat/Makefile Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/regression/doat/Makefile Thu Oct  1 01:10:51 2020        
(r366304)
@@ -3,6 +3,5 @@
 PROG=  doat
 
 MAN=
-WARNS?=6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/geom_gpt/Makefile
==============================================================================
--- head/tools/regression/geom_gpt/Makefile     Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/regression/geom_gpt/Makefile     Thu Oct  1 01:10:51 2020        
(r366304)
@@ -5,6 +5,4 @@ MAN=
 
 LIBADD+=       geom
 
-WARNS?=        6
-
 .include <bsd.prog.mk>

Modified: head/tools/regression/include/stdatomic/Makefile
==============================================================================
--- head/tools/regression/include/stdatomic/Makefile    Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/tools/regression/include/stdatomic/Makefile    Thu Oct  1 01:10:51 
2020        (r366304)
@@ -1,7 +1,6 @@
 # $FreeBSD$
 
 PROG=  logic
-WARNS=6
 MAN=
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/netinet/ipbroadcast/Makefile
==============================================================================
--- head/tools/regression/netinet/ipbroadcast/Makefile  Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/tools/regression/netinet/ipbroadcast/Makefile  Thu Oct  1 01:10:51 
2020        (r366304)
@@ -5,6 +5,4 @@
 PROG=  ipbroadcast
 MAN=
 
-WARNS?=        6
-
 .include <bsd.prog.mk>

Modified: head/tools/regression/rpcsec_gss/Makefile
==============================================================================
--- head/tools/regression/rpcsec_gss/Makefile   Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/regression/rpcsec_gss/Makefile   Thu Oct  1 01:10:51 2020        
(r366304)
@@ -2,7 +2,6 @@
 
 PROG=  rpctest
 MAN=
-WARNS?=        6
 LIBADD=        rpcsec_gss
 DEBUG_FLAGS= -g -O0
 

Modified: head/tools/regression/sockets/accept_fd_leak/Makefile
==============================================================================
--- head/tools/regression/sockets/accept_fd_leak/Makefile       Thu Oct  1 
00:47:35 2020        (r366303)
+++ head/tools/regression/sockets/accept_fd_leak/Makefile       Thu Oct  1 
01:10:51 2020        (r366304)
@@ -4,6 +4,5 @@
 
 PROG=  accept_fd_leak
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/accf_data_attach/Makefile
==============================================================================
--- head/tools/regression/sockets/accf_data_attach/Makefile     Thu Oct  1 
00:47:35 2020        (r366303)
+++ head/tools/regression/sockets/accf_data_attach/Makefile     Thu Oct  1 
01:10:51 2020        (r366304)
@@ -4,6 +4,5 @@
 
 PROG=  accf_data_attach
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/fstat/Makefile
==============================================================================
--- head/tools/regression/sockets/fstat/Makefile        Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/tools/regression/sockets/fstat/Makefile        Thu Oct  1 01:10:51 
2020        (r366304)
@@ -4,6 +4,5 @@
 
 PROG=  fstat
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/kqueue/Makefile
==============================================================================
--- head/tools/regression/sockets/kqueue/Makefile       Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/tools/regression/sockets/kqueue/Makefile       Thu Oct  1 01:10:51 
2020        (r366304)
@@ -4,6 +4,5 @@
 
 PROG=  kqueue
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/listen_backlog/Makefile
==============================================================================
--- head/tools/regression/sockets/listen_backlog/Makefile       Thu Oct  1 
00:47:35 2020        (r366303)
+++ head/tools/regression/sockets/listen_backlog/Makefile       Thu Oct  1 
01:10:51 2020        (r366304)
@@ -2,6 +2,5 @@
 
 PROG=  listen_backlog
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/listen_kqueue/Makefile
==============================================================================
--- head/tools/regression/sockets/listen_kqueue/Makefile        Thu Oct  1 
00:47:35 2020        (r366303)
+++ head/tools/regression/sockets/listen_kqueue/Makefile        Thu Oct  1 
01:10:51 2020        (r366304)
@@ -2,6 +2,5 @@
 
 PROG=  listen_kqueue
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/listenclose/Makefile
==============================================================================
--- head/tools/regression/sockets/listenclose/Makefile  Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/tools/regression/sockets/listenclose/Makefile  Thu Oct  1 01:10:51 
2020        (r366304)
@@ -4,6 +4,5 @@
 
 PROG=  listenclose
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/pr_atomic/Makefile
==============================================================================
--- head/tools/regression/sockets/pr_atomic/Makefile    Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/tools/regression/sockets/pr_atomic/Makefile    Thu Oct  1 01:10:51 
2020        (r366304)
@@ -2,6 +2,5 @@
 
 PROG=  pr_atomic
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/reconnect/Makefile
==============================================================================
--- head/tools/regression/sockets/reconnect/Makefile    Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/tools/regression/sockets/reconnect/Makefile    Thu Oct  1 01:10:51 
2020        (r366304)
@@ -4,6 +4,5 @@
 
 PROG=  reconnect
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/rtsocket/Makefile
==============================================================================
--- head/tools/regression/sockets/rtsocket/Makefile     Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/tools/regression/sockets/rtsocket/Makefile     Thu Oct  1 01:10:51 
2020        (r366304)
@@ -2,6 +2,5 @@
 
 PROG=  rtsocket
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/sblock/Makefile
==============================================================================
--- head/tools/regression/sockets/sblock/Makefile       Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/tools/regression/sockets/sblock/Makefile       Thu Oct  1 01:10:51 
2020        (r366304)
@@ -4,6 +4,5 @@
 
 PROG=  sblock
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/sendfile/Makefile
==============================================================================
--- head/tools/regression/sockets/sendfile/Makefile     Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/tools/regression/sockets/sendfile/Makefile     Thu Oct  1 01:10:51 
2020        (r366304)
@@ -4,7 +4,6 @@
 
 PROG=  sendfile
 MAN=
-WARNS?=        6
 LIBADD=        md
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/shutdown/Makefile
==============================================================================
--- head/tools/regression/sockets/shutdown/Makefile     Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/tools/regression/sockets/shutdown/Makefile     Thu Oct  1 01:10:51 
2020        (r366304)
@@ -4,6 +4,5 @@
 
 PROG=  shutdown
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/sigpipe/Makefile
==============================================================================
--- head/tools/regression/sockets/sigpipe/Makefile      Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/tools/regression/sockets/sigpipe/Makefile      Thu Oct  1 01:10:51 
2020        (r366304)
@@ -4,6 +4,5 @@
 
 PROG=  sigpipe
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/so_setfib/Makefile
==============================================================================
--- head/tools/regression/sockets/so_setfib/Makefile    Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/tools/regression/sockets/so_setfib/Makefile    Thu Oct  1 01:10:51 
2020        (r366304)
@@ -4,7 +4,6 @@
 
 PROG=  so_setfib
 MAN=
-WARNS?=        6
 
 .if ${MK_INET} != "no"
 CFLAGS+=       -DINET

Modified: head/tools/regression/sockets/udp_pingpong/Makefile
==============================================================================
--- head/tools/regression/sockets/udp_pingpong/Makefile Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/tools/regression/sockets/udp_pingpong/Makefile Thu Oct  1 01:10:51 
2020        (r366304)
@@ -2,6 +2,5 @@
 
 PROG=  udp_pingpong
 MAN=
-WARNS?= 6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/unix_bindconnect/Makefile
==============================================================================
--- head/tools/regression/sockets/unix_bindconnect/Makefile     Thu Oct  1 
00:47:35 2020        (r366303)
+++ head/tools/regression/sockets/unix_bindconnect/Makefile     Thu Oct  1 
01:10:51 2020        (r366304)
@@ -2,6 +2,5 @@
 
 PROG=  unix_bindconnect
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/unix_close_race/Makefile
==============================================================================
--- head/tools/regression/sockets/unix_close_race/Makefile      Thu Oct  1 
00:47:35 2020        (r366303)
+++ head/tools/regression/sockets/unix_close_race/Makefile      Thu Oct  1 
01:10:51 2020        (r366304)
@@ -2,6 +2,5 @@
 
 PROG=  unix_close_race
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/unix_gc/Makefile
==============================================================================
--- head/tools/regression/sockets/unix_gc/Makefile      Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/tools/regression/sockets/unix_gc/Makefile      Thu Oct  1 01:10:51 
2020        (r366304)
@@ -2,6 +2,5 @@
 
 PROG=  unix_gc
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/unix_sendtorace/Makefile
==============================================================================
--- head/tools/regression/sockets/unix_sendtorace/Makefile      Thu Oct  1 
00:47:35 2020        (r366303)
+++ head/tools/regression/sockets/unix_sendtorace/Makefile      Thu Oct  1 
01:10:51 2020        (r366304)
@@ -2,6 +2,5 @@
 
 PROG=  unix_sendtorace
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/unix_socket/Makefile
==============================================================================
--- head/tools/regression/sockets/unix_socket/Makefile  Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/tools/regression/sockets/unix_socket/Makefile  Thu Oct  1 01:10:51 
2020        (r366304)
@@ -2,6 +2,5 @@
 
 PROG=  unix_socket
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/unix_sorflush/Makefile
==============================================================================
--- head/tools/regression/sockets/unix_sorflush/Makefile        Thu Oct  1 
00:47:35 2020        (r366303)
+++ head/tools/regression/sockets/unix_sorflush/Makefile        Thu Oct  1 
01:10:51 2020        (r366304)
@@ -2,6 +2,5 @@
 
 PROG=  unix_sorflush
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/regression/sockets/zerosend/Makefile
==============================================================================
--- head/tools/regression/sockets/zerosend/Makefile     Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/tools/regression/sockets/zerosend/Makefile     Thu Oct  1 01:10:51 
2020        (r366304)
@@ -2,6 +2,5 @@
 
 PROG=  zerosend
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/test/auxinfo/Makefile
==============================================================================
--- head/tools/test/auxinfo/Makefile    Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/test/auxinfo/Makefile    Thu Oct  1 01:10:51 2020        
(r366304)
@@ -2,6 +2,5 @@
 
 PROG=  auxinfo
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/test/iconv/posix/Makefile
==============================================================================
--- head/tools/test/iconv/posix/Makefile        Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/test/iconv/posix/Makefile        Thu Oct  1 01:10:51 2020        
(r366304)
@@ -3,6 +3,4 @@
 PROG=  posix
 MAN=
 
-WARNS?=        6
-
 .include <bsd.prog.mk>

Modified: head/tools/test/malloc/Makefile
==============================================================================
--- head/tools/test/malloc/Makefile     Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/test/malloc/Makefile     Thu Oct  1 01:10:51 2020        
(r366304)
@@ -4,7 +4,6 @@ SRCS=   main.c
 .PATH: ${.CURDIR}/../../../lib/libc/stdlib
 
 MAN=
-WARNS?=6
 
 test:  malloc
        @echo

Modified: head/tools/test/net/Makefile
==============================================================================
--- head/tools/test/net/Makefile        Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/test/net/Makefile        Thu Oct  1 01:10:51 2020        
(r366304)
@@ -2,7 +2,6 @@
 
 PROGS= listen connect
 MAN=
-WARNS?=        6
 
 test:  ${PROGS}
 

Modified: head/tools/test/netfibs/Makefile
==============================================================================
--- head/tools/test/netfibs/Makefile    Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/test/netfibs/Makefile    Thu Oct  1 01:10:51 2020        
(r366304)
@@ -2,6 +2,5 @@
 
 PROG=  reflect
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/test/ptrace/Makefile
==============================================================================
--- head/tools/test/ptrace/Makefile     Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/test/ptrace/Makefile     Thu Oct  1 01:10:51 2020        
(r366304)
@@ -2,6 +2,5 @@
 
 PROG=  scescx
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/tools/aac/Makefile
==============================================================================
--- head/tools/tools/aac/Makefile       Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/tools/aac/Makefile       Thu Oct  1 01:10:51 2020        
(r366304)
@@ -2,7 +2,6 @@
 
 PROG=  aac_checkq
 MAN=
-WARNS?=6
 BINDIR?=/usr/local/bin
 
 .include <bsd.prog.mk>

Modified: head/tools/tools/cfi/Makefile
==============================================================================
--- head/tools/tools/cfi/Makefile       Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/tools/cfi/Makefile       Thu Oct  1 01:10:51 2020        
(r366304)
@@ -3,6 +3,5 @@
 PROG=  cfi
 BINDIR=        /usr/local/bin
 MAN=
-WARNS?=6
 
 .include <bsd.prog.mk>

Modified: head/tools/tools/find-sb/Makefile
==============================================================================
--- head/tools/tools/find-sb/Makefile   Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/tools/find-sb/Makefile   Thu Oct  1 01:10:51 2020        
(r366304)
@@ -2,6 +2,5 @@
 
 PROG=  find-sb
 MAN=
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/tools/tools/fixwhite/Makefile
==============================================================================
--- head/tools/tools/fixwhite/Makefile  Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/tools/fixwhite/Makefile  Thu Oct  1 01:10:51 2020        
(r366304)
@@ -2,6 +2,5 @@
 
 PROG=  fixwhite
 BINDIR=        /usr/bin
-WARNS= 6
 
 .include <bsd.prog.mk>

Modified: head/tools/tools/gensnmpdef/Makefile
==============================================================================
--- head/tools/tools/gensnmpdef/Makefile        Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/tools/gensnmpdef/Makefile        Thu Oct  1 01:10:51 2020        
(r366304)
@@ -21,6 +21,4 @@ LDFLAGS+=     -L${LOCALBASE}/lib
 
 LDADD+=        -lsmi
 
-WARNS?=        6
-
 .include <bsd.prog.mk>

Modified: head/tools/tools/ifpifa/Makefile
==============================================================================
--- head/tools/tools/ifpifa/Makefile    Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/tools/ifpifa/Makefile    Thu Oct  1 01:10:51 2020        
(r366304)
@@ -2,7 +2,6 @@
 
 PROG=  ifpifa
 MAN=
-WARNS?=6
 BINDIR?=/usr/local/bin
 LIBADD=kvm
 

Modified: head/tools/tools/ioat/Makefile
==============================================================================
--- head/tools/tools/ioat/Makefile      Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/tools/ioat/Makefile      Thu Oct  1 01:10:51 2020        
(r366304)
@@ -8,6 +8,4 @@ CFLAGS+=        -I${SRCTOP}/sys/dev/ioat
 
 LIBADD=        util
 
-WARNS?=        6
-
 .include <bsd.prog.mk>

Modified: head/tools/tools/iwi/Makefile
==============================================================================
--- head/tools/tools/iwi/Makefile       Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/tools/iwi/Makefile       Thu Oct  1 01:10:51 2020        
(r366304)
@@ -2,6 +2,5 @@
 
 PROG=  iwistats
 MAN=
-WARNS?=6
 
 .include <bsd.prog.mk>

Modified: head/tools/tools/ncpus/Makefile
==============================================================================
--- head/tools/tools/ncpus/Makefile     Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/tools/ncpus/Makefile     Thu Oct  1 01:10:51 2020        
(r366304)
@@ -7,7 +7,6 @@ SRCS=   ncpus.c acpi.c
 SRCS+= biosmptable.c
 .endif
 BINDIR=        /usr/local/bin
-WARNS?=        6
 
 LIBADD=        devinfo
 

Modified: head/tools/tools/pciroms/Makefile
==============================================================================
--- head/tools/tools/pciroms/Makefile   Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/tools/pciroms/Makefile   Thu Oct  1 01:10:51 2020        
(r366304)
@@ -5,6 +5,4 @@
 PROG=  pciroms
 MAN=
 
-WARNS?=        6
-
 .include <bsd.prog.mk>

Modified: head/tools/tools/syscall_timing/Makefile
==============================================================================
--- head/tools/tools/syscall_timing/Makefile    Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/tools/syscall_timing/Makefile    Thu Oct  1 01:10:51 2020        
(r366304)
@@ -8,6 +8,4 @@ MAN=
 
 #LIBADD=       pthread
 
-WARNS= 6
-
 .include <bsd.prog.mk>

Modified: head/tools/tools/tscdrift/Makefile
==============================================================================
--- head/tools/tools/tscdrift/Makefile  Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/tools/tscdrift/Makefile  Thu Oct  1 01:10:51 2020        
(r366304)
@@ -2,7 +2,6 @@
 
 PROG=  tscdrift
 MAN=
-WARNS?=        6
 
 LIBADD=        pthread m
 

Modified: head/tools/tools/vt/mkkfont/Makefile
==============================================================================
--- head/tools/tools/vt/mkkfont/Makefile        Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/tools/tools/vt/mkkfont/Makefile        Thu Oct  1 01:10:51 2020        
(r366304)
@@ -1,6 +1,6 @@
+# $FreeBSD$
+
 PROG=  mkkfont
 MAN1=
-
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/usr.bin/dpv/Makefile
==============================================================================
--- head/usr.bin/dpv/Makefile   Thu Oct  1 00:47:35 2020        (r366303)
+++ head/usr.bin/dpv/Makefile   Thu Oct  1 01:10:51 2020        (r366304)
@@ -8,6 +8,4 @@ CFLAGS+=        -I${.CURDIR}
 
 LIBADD=                dpv dialog
 
-WARNS?=                6
-
 .include <bsd.prog.mk>

Modified: head/usr.bin/getconf/tests/Makefile
==============================================================================
--- head/usr.bin/getconf/tests/Makefile Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/usr.bin/getconf/tests/Makefile Thu Oct  1 01:10:51 2020        
(r366304)
@@ -6,6 +6,4 @@ PROGS+=         arch_type
 
 BINDIR=                ${TESTSDIR}
 
-WARNS?=                6
-
 .include <bsd.test.mk>

Modified: head/usr.bin/mkimg/Makefile
==============================================================================
--- head/usr.bin/mkimg/Makefile Thu Oct  1 00:47:35 2020        (r366303)
+++ head/usr.bin/mkimg/Makefile Thu Oct  1 01:10:51 2020        (r366304)
@@ -34,8 +34,6 @@ BINDIR?=/usr/bin
 
 LIBADD=        util
 
-WARNS?=        6
-
 HAS_TESTS=
 SUBDIR.${MK_TESTS}+= tests
 

Modified: head/usr.bin/posixshmcontrol/Makefile
==============================================================================
--- head/usr.bin/posixshmcontrol/Makefile       Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/usr.bin/posixshmcontrol/Makefile       Thu Oct  1 01:10:51 2020        
(r366304)
@@ -2,6 +2,5 @@
 
 PROG=   posixshmcontrol
 LIBADD=        util
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/usr.bin/proccontrol/Makefile
==============================================================================
--- head/usr.bin/proccontrol/Makefile   Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/usr.bin/proccontrol/Makefile   Thu Oct  1 01:10:51 2020        
(r366304)
@@ -1,6 +1,5 @@
 # $FreeBSD$
 
 PROG=   proccontrol
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/usr.bin/protect/Makefile
==============================================================================
--- head/usr.bin/protect/Makefile       Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/usr.bin/protect/Makefile       Thu Oct  1 01:10:51 2020        
(r366304)
@@ -1,6 +1,5 @@
 # $FreeBSD$
 
 PROG=   protect
-WARNS?=        6
 
 .include <bsd.prog.mk>

Modified: head/usr.sbin/bsdinstall/distextract/Makefile
==============================================================================
--- head/usr.sbin/bsdinstall/distextract/Makefile       Thu Oct  1 00:47:35 
2020        (r366303)
+++ head/usr.sbin/bsdinstall/distextract/Makefile       Thu Oct  1 01:10:51 
2020        (r366304)
@@ -4,7 +4,6 @@ BINDIR= ${LIBEXECDIR}/bsdinstall
 PROG=  distextract
 LIBADD=        archive dpv figpar ncursesw dialog m
 
-WARNS?=        6
 MAN=
 
 .include <bsd.prog.mk>

Modified: head/usr.sbin/bsdinstall/distfetch/Makefile
==============================================================================
--- head/usr.sbin/bsdinstall/distfetch/Makefile Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/usr.sbin/bsdinstall/distfetch/Makefile Thu Oct  1 01:10:51 2020        
(r366304)
@@ -4,7 +4,6 @@ BINDIR= ${LIBEXECDIR}/bsdinstall
 PROG=  distfetch
 LIBADD=        fetch ncursesw dialog m
 
-WARNS?=        6
 MAN=
 
 .include <bsd.prog.mk>

Modified: head/usr.sbin/bsnmpd/tools/Makefile.inc
==============================================================================
--- head/usr.sbin/bsnmpd/tools/Makefile.inc     Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/usr.sbin/bsnmpd/tools/Makefile.inc     Thu Oct  1 01:10:51 2020        
(r366304)
@@ -5,5 +5,3 @@ BINDIR?= /usr/bin
 PACKAGE=       bsnmp
 
 CFLAGS+= -I. -I${.CURDIR}
-
-WARNS?=                6

Modified: head/usr.sbin/ctld/Makefile
==============================================================================
--- head/usr.sbin/ctld/Makefile Thu Oct  1 00:47:35 2020        (r366303)
+++ head/usr.sbin/ctld/Makefile Thu Oct  1 01:10:51 2020        (r366304)
@@ -20,7 +20,6 @@ LIBADD=               bsdxml md sbuf util ucl m nv
 YFLAGS+=       -v
 CLEANFILES=    y.tab.c y.tab.h y.output
 
-WARNS?=                6
 NO_WMISSING_VARIABLE_DECLARATIONS=
 
 .if ${MK_ISCSI} != "no"

Modified: head/usr.sbin/iovctl/Makefile
==============================================================================
--- head/usr.sbin/iovctl/Makefile       Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/usr.sbin/iovctl/Makefile       Thu Oct  1 01:10:51 2020        
(r366304)
@@ -6,8 +6,6 @@ LIBADD= nv ucl m
 
 CFLAGS+=-I${SRCTOP}/contrib/libucl/include
 
-WARNS?=6
-
 MAN=   \
        iovctl.8 \
        iovctl.conf.5 \

Modified: head/usr.sbin/mlx5tool/Makefile
==============================================================================
--- head/usr.sbin/mlx5tool/Makefile     Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/usr.sbin/mlx5tool/Makefile     Thu Oct  1 01:10:51 2020        
(r366304)
@@ -2,6 +2,5 @@
 
 PROG=  mlx5tool
 MAN=   mlx5tool.8
-WARNS?= 6
 
 .include <bsd.prog.mk>

Modified: head/usr.sbin/pw/tests/Makefile
==============================================================================
--- head/usr.sbin/pw/tests/Makefile     Thu Oct  1 00:47:35 2020        
(r366303)
+++ head/usr.sbin/pw/tests/Makefile     Thu Oct  1 01:10:51 2020        
(r366304)
@@ -5,7 +5,6 @@ PACKAGE=        tests
 BINDIR=                ${TESTSDIR}
 
 PROGS+=                crypt
-WARNS?=                6
 LIBADD+=       crypt
 
 ATF_TESTS_SH=  pw_etcdir_test \
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to