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 #4330pull/4396/head
parent
066060e8c9
commit
e8232c7825
9 changed files with 21 additions and 25 deletions
@ -0,0 +1,7 @@ |
||||
## Manpages are no longer compressed implicitly |
||||
|
||||
Earlier, the `install_man` command has automatically compressed installed |
||||
manpages into `.gz` format. This collided with manpage compression hooks |
||||
already used by various distributions. Now, manpages are installed uncompressed |
||||
and distributors are expected to handle compressing them according to their own |
||||
compression preferences. |
@ -1,5 +1,5 @@ |
||||
usr/share/man/man1/foo.1.gz |
||||
usr/share/man/man2/bar.2.gz |
||||
usr/share/man/man1/vanishing.1.gz |
||||
usr/share/man/man2/vanishing.2.gz |
||||
usr/share/man/man1/baz.1.gz |
||||
usr/share/man/man1/foo.1 |
||||
usr/share/man/man2/bar.2 |
||||
usr/share/man/man1/vanishing.1 |
||||
usr/share/man/man2/vanishing.2 |
||||
usr/share/man/man1/baz.1 |
||||
|
Loading…
Reference in new issue