From ac45f09af306438f4f87d8fe4e7173271daaceac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20J=C3=A4ger?= Date: Mon, 19 Feb 2024 14:59:57 +0100 Subject: [PATCH] do not install compressed manpages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix #317 Signed-off-by: Pascal Jäger --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 26cec21..e1cd0fa 100644 --- a/Makefile +++ b/Makefile @@ -44,13 +44,11 @@ install: @cp manpages/grub-btrfs.8.man ${TEMP_DIR}/grub-btrfs.8 @if test "$(INSTALL_DOCS)" = true; then \ echo "Installing manpages..."; \ - bzip2 ${TEMP_DIR}/grub-btrfs.8; \ - install -Dm644 -t "${MAN_DIR}/man8" "${TEMP_DIR}/grub-btrfs.8.bz2"; \ + install -Dm644 -t "${MAN_DIR}/man8" "${TEMP_DIR}/grub-btrfs.8"; \ fi @cp manpages/grub-btrfsd.8.man ${TEMP_DIR}/grub-btrfsd.8 @if test "$(INSTALL_DOCS)" = true; then \ - bzip2 ${TEMP_DIR}/grub-btrfsd.8; \ - install -Dm644 -t "${MAN_DIR}/man8" "${TEMP_DIR}/grub-btrfsd.8.bz2"; \ + install -Dm644 -t "${MAN_DIR}/man8" "${TEMP_DIR}/grub-btrfsd.8"; \ fi @install -Dm755 -t "$(DESTDIR)/etc/grub.d/" 41_snapshots-btrfs @install -Dm644 -t "$(DESTDIR)/etc/default/grub-btrfs/" config