diff options
author | 2011-11-16 16:38:34 +0000 | |
---|---|---|
committer | 2011-11-16 16:38:34 +0000 | |
commit | 161ff21578d9afb84cafbeaa64a17a40867dbc15 (patch) | |
tree | 3b2bc4dd529a03ed745980c9d8fb1a94d8a76090 | |
parent | Better clock rate .7% error is much better than 7% error. (diff) | |
download | wireguard-openbsd-161ff21578d9afb84cafbeaa64a17a40867dbc15.tar.xz wireguard-openbsd-161ff21578d9afb84cafbeaa64a17a40867dbc15.zip |
During pkg_create(1), do not print any warnings or non-fatal errors
from groff(1); of course, fatal errors cannot be ignored.
If you want to polish manuals, use mandoc(1) -Tlint instead.
ok espie@, and millert@ does not object
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/PackingElement.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/PackingElement.pm b/usr.sbin/pkg_add/OpenBSD/PackingElement.pm index c048418aaee..5154d38528f 100644 --- a/usr.sbin/pkg_add/OpenBSD/PackingElement.pm +++ b/usr.sbin/pkg_add/OpenBSD/PackingElement.pm @@ -1,5 +1,5 @@ # ex:ts=8 sw=4: -# $OpenBSD: PackingElement.pm,v 1.200 2011/08/23 10:32:27 espie Exp $ +# $OpenBSD: PackingElement.pm,v 1.201 2011/11/16 16:38:34 schwarze Exp $ # # Copyright (c) 2003-2010 Marc Espie <espie@openbsd.org> # @@ -593,8 +593,8 @@ sub format chdir($dir) or die "Can't chdir to $dir"; }, OpenBSD::Paths->groff, - qw(-Tascii -mandoc -Wall -mtty-char -P -c), @extra, '--', - $file); + qw(-mandoc -mtty-char -E -Ww -Tascii -P -c), + @extra, '--', $file); } else { die "Can't parse source name $fname"; } |