diff options
author | ed <ed@FreeBSD.org> | 2011-10-14 07:26:20 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2011-10-14 07:26:20 +0000 |
commit | ec118486fa0ca2d96d855d51366187d63dbfa03e (patch) | |
tree | 55669e6d3c8bc0374cd4cb90264824df9a2bf418 /usr.bin/last | |
parent | c532eb5b65bcbcadaced57ea11d0d8dfd07ea00c (diff) | |
download | FreeBSD-src-ec118486fa0ca2d96d855d51366187d63dbfa03e.zip FreeBSD-src-ec118486fa0ca2d96d855d51366187d63dbfa03e.tar.gz |
Build last(1) and leave(1) with WARNS=6.
These ports were only built with WARNS=1, because they use certain
format extensions. We can use NO_WFORMAT for that instead.
Diffstat (limited to 'usr.bin/last')
-rw-r--r-- | usr.bin/last/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/last/Makefile b/usr.bin/last/Makefile index 0bd2f05..fd63cd9 100644 --- a/usr.bin/last/Makefile +++ b/usr.bin/last/Makefile @@ -3,6 +3,6 @@ PROG= last -WARNS?= 1 +NO_WFORMAT= .include <bsd.prog.mk> |