mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05: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 @@ (define (maybe-compress-directory directory regexp
|
|||
|
||||
(define (maybe-compress output)
|
||||
(maybe-compress-directory (string-append output "/share/man")
|
||||
"\\.[0-9]+$"
|
||||
"\\.[0-9]+[:alpha:]*$"
|
||||
man-compressor
|
||||
man-compressor-flags
|
||||
man-compressor-file-extension)
|
||||
|
|
Loading…
Reference in a new issue