From: Debian Multimedia Maintainers Date: Mon, 27 Jan 2025 16:13:40 +0000 (+0100) Subject: Prevent buildsystem from gzipping manpages X-Git-Tag: archive/raspbian/2.5.1+ds-1+rpi1^2^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=718aed3ede7d4982085604116ea189f082fc70e7;p=jacktrip.git Prevent buildsystem from gzipping manpages Origin: Debian Forwarded: not-needed Last-Update: 2023-09-25 dh_installman does this for us Last-Update: 2023-09-25 Gbp-Pq: Name dont_compress_manpages.patch --- diff --git a/meson.build b/meson.build index 2bba8cb..d685681 100644 --- a/meson.build +++ b/meson.build @@ -526,7 +526,7 @@ if (host_machine.system() == 'linux') command: [help2man, help2man_opts, '--output=@OUTPUT@', jacktrip], install: not gzip.found(), install_dir: get_option('mandir') / 'man1') - if gzip.found() + if gzip.found() or false custom_target('jacktrip.1.gz', input: manfile, output: 'jacktrip.1.gz',