mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
build/gnu: Support compressing non-numeric man sections.
* guix/build/gnu-build-system.scm (compress-documentation) [maybe-compress]: Expand regex to include man sections with alphabetic suffixes. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
6667139960
commit
1d16506c32
1 changed files with 1 additions and 1 deletions
|
@ -728,7 +728,7 @@ MAN-COMPRESSOR, using MAN-COMPRESSOR-FLAGS."
|
||||||
|
|
||||||
(define (maybe-compress output)
|
(define (maybe-compress output)
|
||||||
(maybe-compress-directory (string-append output "/share/man")
|
(maybe-compress-directory (string-append output "/share/man")
|
||||||
"\\.[0-9]+$"
|
"\\.[0-9]+[:alpha:]*$"
|
||||||
man-compressor
|
man-compressor
|
||||||
man-compressor-flags
|
man-compressor-flags
|
||||||
man-compressor-file-extension)
|
man-compressor-file-extension)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue