diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-10-19 10:24:46 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-10-20 13:16:28 +0300 |
commit | e8232c7825fdb3783ffa84e90f3ab8f2224a1399 (patch) | |
tree | 8df75e076d71065e92db84cb59083d2a625debaf /run_unittests.py | |
parent | 066060e8c9402b3ae510de7fbddeeb3b528247c9 (diff) | |
download | meson-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 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run_unittests.py b/run_unittests.py index 0f0e0e3..9e9ba04 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -3621,7 +3621,7 @@ class LinuxlikeTests(BasePlatformTests): ('share', 'drwxr-x---'), ('share/man', 'drwxr-x---'), ('share/man/man1', 'drwxr-x---'), - ('share/man/man1/foo.1.gz', '-r--r--r-T'), + ('share/man/man1/foo.1', '-r--r--r-T'), ('share/sub1', 'drwxr-x---'), ('share/sub1/second.dat', '-rwxr-x--t'), ('subdir', 'drwxr-x---'), @@ -3694,7 +3694,7 @@ class LinuxlikeTests(BasePlatformTests): 'include/sample.h', 'share/datafile.cat', 'share/file.dat', - 'share/man/man1/prog.1.gz', + 'share/man/man1/prog.1', 'share/subdir/datafile.dog', ]: f = os.path.join(self.installdir, 'usr', *datafile.split('/')) |