man: use older '-c' option

The gzip '-k' option isn't supported on older versions of gzip, so use
the more portable '-c' option to send the compressed file to stdout.
This commit is contained in:
Josh Poimboeuf 2014-03-27 22:21:43 -07:00
parent bf58321229
commit e7dbaf0b52
1 changed files with 2 additions and 2 deletions

View File

@ -3,10 +3,10 @@ include ../Makefile.inc
all: kpatch.1.gz kpatch-build.1.gz
kpatch.1.gz: kpatch.1
gzip -k -9 kpatch.1
gzip -c -9 $< > $@
kpatch-build.1.gz: kpatch-build.1
gzip -k -9 kpatch-build.1
gzip -c -9 $< > $@
install: all
$(INSTALL) -d $(MANDIR)