Date: Fri, 14 Oct 2011 07:26:20 +0000 (UTC) From: Ed Schouten <ed@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r226361 - in head/usr.bin: last leave Message-ID: <201110140726.p9E7QKjE052251@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201110140726.p9E7QKjE052251>