mirror of https://github.com/dynup/kpatch
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:
parent
bf58321229
commit
e7dbaf0b52
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue