aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/backend/backends.py
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-10-19 10:24:46 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2018-10-20 13:16:28 +0300
commite8232c7825fdb3783ffa84e90f3ab8f2224a1399 (patch)
tree8df75e076d71065e92db84cb59083d2a625debaf /mesonbuild/backend/backends.py
parent066060e8c9402b3ae510de7fbddeeb3b528247c9 (diff)
downloadmeson-e8232c7825fdb3783ffa84e90f3ab8f2224a1399.zip
meson-e8232c7825fdb3783ffa84e90f3ab8f2224a1399.tar.gz
meson-e8232c7825fdb3783ffa84e90f3ab8f2224a1399.tar.bz2
Remove implicit compression of man pages
Remove the code responsible for implicitly compressing manpages as .gz files. It has been established that manpage compression is a distro packager's task, with existing distros already having their own implementations of compression. Fixes #4330
Diffstat (limited to 'mesonbuild/backend/backends.py')
-rw-r--r--mesonbuild/backend/backends.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py
index f12b357..3478be6 100644
--- a/mesonbuild/backend/backends.py
+++ b/mesonbuild/backend/backends.py
@@ -1085,7 +1085,7 @@ class Backend:
if subdir is None:
subdir = os.path.join(manroot, 'man' + num)
srcabs = f.absolute_path(self.environment.get_source_dir(), self.environment.get_build_dir())
- dstabs = os.path.join(subdir, os.path.basename(f.fname) + '.gz')
+ dstabs = os.path.join(subdir, os.path.basename(f.fname))
i = [srcabs, dstabs, m.get_custom_install_mode()]
d.man.append(i)