diff options
author | ed <ed@FreeBSD.org> | 2011-06-06 20:24:17 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2011-06-06 20:24:17 +0000 |
commit | 52acbc4c0a01ae6c8a405c4588f612262bc0a798 (patch) | |
tree | 5a8663c8132bc6dbd4b2cdb6efbf75cc743430d6 | |
parent | 3f1de98b344828e5a09a22f49c9068f2de8e689d (diff) | |
download | FreeBSD-src-52acbc4c0a01ae6c8a405c4588f612262bc0a798.zip FreeBSD-src-52acbc4c0a01ae6c8a405c4588f612262bc0a798.tar.gz |
Remove redundant assignments to WARNS.
For these directories, WARNS is already implied to be 6.
-rw-r--r-- | lib/libiconv/Makefile | 1 | ||||
-rw-r--r-- | sbin/geom/class/sched/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/grep/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/iconv/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/rctl/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/bluetooth/ath3kfw/Makefile | 1 | ||||
-rw-r--r-- | usr.sbin/bsnmpd/modules/snmp_wlan/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/rtsold/Makefile | 1 |
8 files changed, 0 insertions, 13 deletions
diff --git a/lib/libiconv/Makefile b/lib/libiconv/Makefile index 078771e..71c2885 100644 --- a/lib/libiconv/Makefile +++ b/lib/libiconv/Makefile @@ -19,7 +19,6 @@ SRCS= citrus_bcs.c citrus_bcs_strtol.c citrus_bcs_strtoul.c \ citrus_module.c citrus_none.c citrus_pivot_factory.c \ citrus_prop.c citrus_stdenc.c iconv.c -WARNS?= 6 CFLAGS+= --param max-inline-insns-single=128 -I ${.CURDIR}/../../include -I${.CURDIR}/../libc/include .include <bsd.lib.mk> diff --git a/sbin/geom/class/sched/Makefile b/sbin/geom/class/sched/Makefile index a6ccd58..6f54d3f 100644 --- a/sbin/geom/class/sched/Makefile +++ b/sbin/geom/class/sched/Makefile @@ -5,6 +5,4 @@ GEOM_CLASS= sched -WARNS?= 6 - .include <bsd.lib.mk> diff --git a/usr.bin/grep/Makefile b/usr.bin/grep/Makefile index 8cd490d..f09a7d6 100644 --- a/usr.bin/grep/Makefile +++ b/usr.bin/grep/Makefile @@ -28,8 +28,6 @@ MLINKS= grep.1 egrep.1 \ bsdgrep.1: grep.1 cp ${.ALLSRC} ${.TARGET} -WARNS?= 6 - LDADD= -lz -lbz2 DPADD= ${LIBZ} ${LIBBZ2} diff --git a/usr.bin/iconv/Makefile b/usr.bin/iconv/Makefile index 7e8f6e7..deab092 100644 --- a/usr.bin/iconv/Makefile +++ b/usr.bin/iconv/Makefile @@ -7,8 +7,6 @@ PROG= iconv #SRCS= iconv.c MAN= iconv.1 -WARNS?= 6 - LDADD+= -lcrypt DPADD+= ${LIBCRYPT} diff --git a/usr.bin/rctl/Makefile b/usr.bin/rctl/Makefile index 1088cf1..c5c32eb 100644 --- a/usr.bin/rctl/Makefile +++ b/usr.bin/rctl/Makefile @@ -6,6 +6,4 @@ MAN= rctl.8 DPADD= ${LIBUTIL} LDADD= -lutil -WARNS?= 6 - .include <bsd.prog.mk> diff --git a/usr.sbin/bluetooth/ath3kfw/Makefile b/usr.sbin/bluetooth/ath3kfw/Makefile index 0ff010f..373655b 100644 --- a/usr.sbin/bluetooth/ath3kfw/Makefile +++ b/usr.sbin/bluetooth/ath3kfw/Makefile @@ -2,7 +2,6 @@ PROG= ath3kfw MAN= ath3kfw.8 -WARNS?= 6 DPADD+= ${LIBUSB} LDADD+= -lusb diff --git a/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile b/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile index 9b8628b..6a53d46 100644 --- a/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile +++ b/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile @@ -6,8 +6,6 @@ MOD= wlan SRCS= wlan_snmp.c wlan_sys.c CFLAGS+= -DSNMPTREE_TYPES -WARNS= 6 - XSYM= begemotWlan BMIBS= BEGEMOT-WIRELESS-MIB.txt diff --git a/usr.sbin/rtsold/Makefile b/usr.sbin/rtsold/Makefile index 9e2b480..c7c93af 100644 --- a/usr.sbin/rtsold/Makefile +++ b/usr.sbin/rtsold/Makefile @@ -19,7 +19,6 @@ MAN= rtsold.8 MLINKS= rtsold.8 rtsol.8 SRCS= rtsold.c rtsol.c if.c probe.c dump.c rtsock.c -WARNS?= 6 CFLAGS+= -DHAVE_ARC4RANDOM -DHAVE_POLL_H DPADD= ${LIBKVM} LDADD= -lkvm |