diff options
author | 2015-01-16 01:58:17 +0000 | |
---|---|---|
committer | 2015-01-16 01:58:17 +0000 | |
commit | dac384a83a9668679bfa96f1fafedc4aa205e8b6 (patch) | |
tree | 506b1aa110982e50744617345476fe107f404fac /lib | |
parent | sync (diff) | |
download | wireguard-openbsd-dac384a83a9668679bfa96f1fafedc4aa205e8b6.tar.xz wireguard-openbsd-dac384a83a9668679bfa96f1fafedc4aa205e8b6.zip |
Delete the MANLINT variable and the related SUFFIXES rules because
since yesterday, "mandoc -Tlint -Wfatal" can no longer fail.
Instead, as suggested by deraadt@, provide a manlint target
that is *not* run during make build, but can be run
whenever you want to check syntax of manuals.
"nice stuff" deraadt@
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/man/Makefile | 4 | ||||
-rw-r--r-- | lib/libssl/man/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libcrypto/man/Makefile b/lib/libcrypto/man/Makefile index cd8c8585a54..c6dc286934b 100644 --- a/lib/libcrypto/man/Makefile +++ b/lib/libcrypto/man/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.14 2014/12/06 22:18:18 schwarze Exp $ +# $OpenBSD: Makefile,v 1.15 2015/01/16 01:58:18 schwarze Exp $ .include <bsd.own.mk> # for NOMAN @@ -1146,4 +1146,4 @@ maninstall: .include <bsd.subdir.mk> clean cleandir: - rm -f ${MAN} ${MANLINT} + rm -f ${MAN} diff --git a/lib/libssl/man/Makefile b/lib/libssl/man/Makefile index c12692357e3..25a29721446 100644 --- a/lib/libssl/man/Makefile +++ b/lib/libssl/man/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.29 2014/07/11 17:43:41 deraadt Exp $ +# $OpenBSD: Makefile,v 1.30 2015/01/16 01:58:17 schwarze Exp $ .include <bsd.own.mk> # for NOMAN @@ -272,4 +272,4 @@ maninstall: .include <bsd.subdir.mk> clean cleandir: - rm -f ${MAN} ${MANLINT} + rm -f ${MAN} |