diff options
author | wosch <wosch@FreeBSD.org> | 1996-01-23 01:00:37 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1996-01-23 01:00:37 +0000 |
commit | 7aef4226f5d855e8ab5f8ac3f454b5f0cd1d05e4 (patch) | |
tree | 263f4edf46f6a520827763b1a842472ff0a54ffa /gnu | |
parent | 87bb8ce2aa8bacb1dfbc3657c12e8cee7a6555e7 (diff) | |
download | FreeBSD-src-7aef4226f5d855e8ab5f8ac3f454b5f0cd1d05e4.zip FreeBSD-src-7aef4226f5d855e8ab5f8ac3f454b5f0cd1d05e4.tar.gz |
Add missing manpage zgrep.1 and links zegrep.1, zfgrep.1
Add missing links zegrep and zfgrep
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/gzip/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/usr.bin/gzip/Makefile b/gnu/usr.bin/gzip/Makefile index 19b9e0a..b790d96 100644 --- a/gnu/usr.bin/gzip/Makefile +++ b/gnu/usr.bin/gzip/Makefile @@ -3,15 +3,18 @@ PROG= gzip SRCS= gzip.c zip.c deflate.c trees.c bits.c unzip.c inflate.c util.c \ crypt.c lzw.c unlzw.c unlzh.c unpack.c getopt.c match.S -MAN1= gzexe.1 gzip.1 zdiff.1 zforce.1 zmore.1 znew.1 +MAN1= gzexe.1 gzip.1 zdiff.1 zforce.1 zmore.1 znew.1 zgrep.1 CFLAGS+=-DASMV -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1 -DDIRENT=1 MLINKS= gzip.1 gunzip.1 gzip.1 zcat.1 gzip.1 gzcat.1 +MLINKS+= zgrep.1 zfgrep.1 zgrep.1 zegrep.1 LINKS+= ${BINDIR}/gzip ${BINDIR}/gunzip LINKS+= ${BINDIR}/gzip ${BINDIR}/gzcat LINKS+= ${BINDIR}/gzip ${BINDIR}/zcat +LINKS+= ${BINDIR}/zgrep ${BINDIR}/zegrep +LINKS+= ${BINDIR}/zgrep ${BINDIR}/zfgrep NOSHARED=yes -afterinstall: +beforeinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/zforce ${.CURDIR}/gzexe ${.CURDIR}/znew \ ${.CURDIR}/zmore ${.CURDIR}/zdiff ${.CURDIR}/zgrep \ |