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 /docs/markdown/Installing.md | |
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 'docs/markdown/Installing.md')
-rw-r--r-- | docs/markdown/Installing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Installing.md b/docs/markdown/Installing.md index 8348d4a..1aa444a 100644 --- a/docs/markdown/Installing.md +++ b/docs/markdown/Installing.md @@ -26,7 +26,7 @@ Other install commands are the following. ```meson install_headers('header.h', subdir : 'projname') # -> include/projname/header.h -install_man('foo.1') # -> share/man/man1/foo.1.gz +install_man('foo.1') # -> share/man/man1/foo.1 install_data('datafile.dat', install_dir : join_paths(get_option('datadir'), 'progname')) # -> share/progname/datafile.dat ``` |