diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2018-12-24 19:59:18 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2018-12-24 19:59:18 +0000 |
commit | 3712d6da0ae005bbb4e6957fbddfa964eebbe44b (patch) | |
tree | 9d84e51a5636aefac9d18615af46d21ec7086338 /usr.bin | |
parent | cea2764d88bb2150116abad123f9511af8008a35 (diff) |
install /usr/share/misc/mandoc.css
users of -T html normally need this file,
so the source tree should not be the only place to get it
pointed out by millert@, OK millert@ deraadt@ tedu@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/mandoc/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/mandoc/Makefile b/usr.bin/mandoc/Makefile index 29e9a930f37..eb665fd863d 100644 --- a/usr.bin/mandoc/Makefile +++ b/usr.bin/mandoc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.113 2018/12/14 01:17:46 schwarze Exp $ +# $OpenBSD: Makefile,v 1.114 2018/12/24 19:59:17 schwarze Exp $ .include <bsd.own.mk> @@ -34,6 +34,10 @@ MAN = apropos.1 man.1 mandoc.1 man.conf.5 makewhatis.8 CLEANFILES += man.cgi cgi.o +afterinstall: + install -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${.CURDIR}/mandoc.css ${DESTDIR}/usr/share/misc + # ---------------------------------------------------------------------- # Variables and targets to build and install man.cgi(8), |