diff options
author | Dima Dorfman <dd@FreeBSD.org> | 2001-07-15 10:30:46 +0000 |
---|---|---|
committer | Dima Dorfman <dd@FreeBSD.org> | 2001-07-15 10:30:46 +0000 |
commit | b91c884fda0a18e8d23b3adfab84fd340efafdc6 (patch) | |
tree | 5839506a1488434bf32a26a212d6ee5a6d749556 /sbin | |
parent | 02c4d9cff73117df900a5e94f301934732a27c0a (diff) | |
download | src-b91c884fda0a18e8d23b3adfab84fd340efafdc6.tar.gz src-b91c884fda0a18e8d23b3adfab84fd340efafdc6.zip |
Set WARNS=2 on programs which compile cleanly.
Submitted by: Mike Barcroft <mike@q9media.com>
Notes
Notes:
svn path=/head/; revision=79758
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/clri/Makefile | 1 | ||||
-rw-r--r-- | sbin/kldload/Makefile | 1 | ||||
-rw-r--r-- | sbin/spppcontrol/Makefile | 1 | ||||
-rw-r--r-- | sbin/swapon/Makefile | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/sbin/clri/Makefile b/sbin/clri/Makefile index c68c312f269b..0e99a4e4d411 100644 --- a/sbin/clri/Makefile +++ b/sbin/clri/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PROG= clri +WARNS?= 2 MAN= clri.8 .include <bsd.prog.mk> diff --git a/sbin/kldload/Makefile b/sbin/kldload/Makefile index 05ad5bab82c0..6e9e17ddc493 100644 --- a/sbin/kldload/Makefile +++ b/sbin/kldload/Makefile @@ -27,6 +27,7 @@ # PROG= kldload +WARNS?= 2 MAN= kldload.8 .include <bsd.prog.mk> diff --git a/sbin/spppcontrol/Makefile b/sbin/spppcontrol/Makefile index b394c39a4e83..fa7b90d16501 100644 --- a/sbin/spppcontrol/Makefile +++ b/sbin/spppcontrol/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PROG= spppcontrol +WARNS?= 2 MAN= spppcontrol.8 .include <bsd.prog.mk> diff --git a/sbin/swapon/Makefile b/sbin/swapon/Makefile index be803b298a37..d33cd48c2eb6 100644 --- a/sbin/swapon/Makefile +++ b/sbin/swapon/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PROG= swapon +WARNS?= 2 MAN= swapon.8 .include <bsd.prog.mk> |