svn commit: r226361 - in head/usr.bin: last leave
Ed Schouten
ed at FreeBSD.org
Fri Oct 14 07:26:20 UTC 2011
Author: ed
Date: Fri Oct 14 07:26:20 2011
New Revision: 226361
URL: http://svn.freebsd.org/changeset/base/226361
Log:
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.
Modified:
head/usr.bin/last/Makefile
head/usr.bin/leave/Makefile
Modified: head/usr.bin/last/Makefile
==============================================================================
--- head/usr.bin/last/Makefile Fri Oct 14 07:25:20 2011 (r226360)
+++ head/usr.bin/last/Makefile Fri Oct 14 07:26:20 2011 (r226361)
@@ -3,6 +3,6 @@
PROG= last
-WARNS?= 1
+NO_WFORMAT=
.include <bsd.prog.mk>
Modified: head/usr.bin/leave/Makefile
==============================================================================
--- head/usr.bin/leave/Makefile Fri Oct 14 07:25:20 2011 (r226360)
+++ head/usr.bin/leave/Makefile Fri Oct 14 07:26:20 2011 (r226361)
@@ -3,6 +3,6 @@
PROG= leave
-WARNS?= 1
+NO_WFORMAT=
.include <bsd.prog.mk>
More information about the svn-src-all
mailing list