From dd4414119a5a20ed7f31259865573ea29b7c0b58 Mon Sep 17 00:00:00 2001 From: Alexey Avramov Date: Sun, 31 May 2020 05:58:57 +0900 Subject: [PATCH] Update Makefile: update gzip options: add -9n --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index bd99510..c4963cf 100644 --- a/Makefile +++ b/Makefile @@ -64,12 +64,12 @@ base: install -m0644 conf/logrotate.d/nohang $(DESTDIR)$(LOGROTATECONFDIR)/nohang install -d $(DESTDIR)$(MANDIR)/man1 - gzip -c man/oom-sort.1 > $(DESTDIR)$(MANDIR)/man1/oom-sort.1.gz - gzip -c man/psi-top.1 > $(DESTDIR)$(MANDIR)/man1/psi-top.1.gz - gzip -c man/psi2log.1 > $(DESTDIR)$(MANDIR)/man1/psi2log.1.gz + gzip -9cn man/oom-sort.1 > $(DESTDIR)$(MANDIR)/man1/oom-sort.1.gz + gzip -9cn man/psi-top.1 > $(DESTDIR)$(MANDIR)/man1/psi-top.1.gz + gzip -9cn man/psi2log.1 > $(DESTDIR)$(MANDIR)/man1/psi2log.1.gz install -d $(DESTDIR)$(MANDIR)/man8 - gzip -c man/nohang.8 > $(DESTDIR)$(MANDIR)/man8/nohang.8.gz + gzip -9cn man/nohang.8 > $(DESTDIR)$(MANDIR)/man8/nohang.8.gz install -d $(DESTDIR)$(DOCDIR) install -m0644 README.md $(DESTDIR)$(DOCDIR)/README.md