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/grep | |
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/grep')
-rw-r--r-- | usr.bin/grep/Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/usr.bin/grep/Makefile b/usr.bin/grep/Makefile index 5a1d63a5188..2799c346540 100644 --- a/usr.bin/grep/Makefile +++ b/usr.bin/grep/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 2003/06/25 15:00:04 millert Exp $ +# $OpenBSD: Makefile,v 1.7 2016/03/30 06:38:46 jmc Exp $ PROG= grep SRCS= binary.c file.c grep.c mmfile.c queue.c util.c @@ -8,12 +8,6 @@ LINKS= ${BINDIR}/grep ${BINDIR}/egrep \ ${BINDIR}/grep ${BINDIR}/zegrep \ ${BINDIR}/grep ${BINDIR}/zfgrep \ -MLINKS= grep.1 egrep.1 \ - grep.1 fgrep.1 \ - grep.1 zgrep.1 \ - grep.1 zegrep.1 \ - grep.1 zfgrep.1 - CFLAGS+= -Wall LDADD= -lz |