diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2015-01-16 01:58:19 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2015-01-16 01:58:19 +0000 |
commit | b81f1c93e0a291ee9daddcda9045fad31b7ac885 (patch) | |
tree | 5c710fbb30f0b2625dc1f4d8cfa0a3fd8ea444ec /lib/libssl | |
parent | 2b3c4079a646bba3a7f12e71e86990e878bfbf90 (diff) |
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/libssl')
-rw-r--r-- | lib/libssl/man/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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} |