From: Debian Multimedia Maintainers Date: Sat, 16 Mar 2024 22:51:47 +0000 (+0100) Subject: Prevent buildsystem from gzipping manpages X-Git-Tag: archive/raspbian/2.5.1+ds-1+rpi1~1^2^2^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=700d9378b7880e0d4e5d9999a2e534af27779c09;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 d79bd43..1d15c8b 100644 --- a/meson.build +++ b/meson.build @@ -302,7 +302,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', @@ -320,4 +320,4 @@ summary({'JACK': jack_dep.found(), summary({'Application ID': application_id, 'GUI': not get_option('nogui'), 'WAIR': get_option('wair'), - 'Manpage': help2man.found()}, bool_yn: true, section: 'Configuration') \ No newline at end of file + 'Manpage': help2man.found()}, bool_yn: true, section: 'Configuration')