From e7dbaf0b52f875f6bac1a6f46d75ab3897568e1a Mon Sep 17 00:00:00 2001 From: Josh Poimboeuf Date: Thu, 27 Mar 2014 22:21:43 -0700 Subject: [PATCH] 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. --- man/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man/Makefile b/man/Makefile index 35940e8..762042d 100644 --- a/man/Makefile +++ b/man/Makefile @@ -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)