From 1631d52fcf396165c187252e6ab9a80085ce3363 Mon Sep 17 00:00:00 2001 From: Josh Poimboeuf Date: Thu, 27 Mar 2014 14:12:44 -0700 Subject: [PATCH] man: don't delete source files when compressing man files Fix the issue where a "make install" deletes the man source files. --- man/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man/Makefile b/man/Makefile index 47d7d8b..a6873a0 100644 --- a/man/Makefile +++ b/man/Makefile @@ -4,9 +4,9 @@ all: install: all $(INSTALL) -d $(MANDIR) - gzip -9 kpatch.1 + gzip -k -9 kpatch.1 $(INSTALL) -m 644 kpatch.1.gz $(MANDIR) - gzip -9 kpatch-build.1 + gzip -k -9 kpatch-build.1 $(INSTALL) -m 644 kpatch-build.1.gz $(MANDIR) uninstall: