diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2016-03-30 06:38:48 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2016-03-30 06:38:48 +0000 |
commit | 22c99bcd0d1aacbc678f4a711ffe6a55178e6c28 (patch) | |
tree | fc5a38e208ec108f56afffc16f05c640e740cc20 /usr.bin/vi/build | |
parent | c18d4a3d864d24448fec6853ae70834f8dae3a40 (diff) |
for some time now mandoc has not required MLINKS to function
correctly - logically complete that now by removing MLINKS from base;
authors need only to ensure there is an entry in NAME for any function/
util being added. MLINKS will still work, and remain for perl to ease
upgrades;
ok nicm (curses) bcook (ssl)
ok schwarze, who provided a lot of feedback and assistance
ok tb natano jung
Diffstat (limited to 'usr.bin/vi/build')
-rw-r--r-- | usr.bin/vi/build/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/vi/build/Makefile b/usr.bin/vi/build/Makefile index 1cc4266b876..d8663107b73 100644 --- a/usr.bin/vi/build/Makefile +++ b/usr.bin/vi/build/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.23 2016/01/06 22:34:45 millert Exp $ +# $OpenBSD: Makefile,v 1.24 2016/03/30 06:38:46 jmc Exp $ # @(#)Makefile.in 8.75 (Berkeley) 10/23/96 PROG= vi @@ -37,8 +37,6 @@ SRCS= cl_funcs.c cl_main.c cl_read.c cl_screen.c cl_term.c \ LINKS= ${BINDIR}/vi ${BINDIR}/ex LINKS+= ${BINDIR}/vi ${BINDIR}/view -MLINKS= vi.1 ex.1 -MLINKS+= vi.1 view.1 .PATH: ${.CURDIR}/../vi ${.CURDIR}/../ex ${.CURDIR}/../cl ${.CURDIR}/../common ${.CURDIR}/../docs/USD.doc/vi.man |