diff options
| author | Lilah Tascheter <lilah@lunabee.space> | 2022-10-19 10:27:57 -0500 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:44:35 +0200 |
| commit | a3ef89714f2f1afeca2d58ce686fbb84a5fca64c (patch) | |
| tree | 7dfda520beaf21770d3409cf13a2d7cc33ce7b00 /gnu/packages | |
| parent | 1d16506c325c012d1d6328edbd5d1915729d01eb (diff) | |
gnu: man-pages-posix: Remove redundant manpage compression.
* gnu/packages/man.scm (man-pages-posix)[arguments]: Don't run build
phase.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/man.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/man.scm b/gnu/packages/man.scm index 780f6bf6d8c..f4b995691cb 100644 --- a/gnu/packages/man.scm +++ b/gnu/packages/man.scm | |||
| @@ -374,11 +374,11 @@ Linux kernel and C library interfaces employed by user-space programs.") | |||
| 374 | (build-system gnu-build-system) | 374 | (build-system gnu-build-system) |
| 375 | (arguments | 375 | (arguments |
| 376 | `(#:tests? #f | 376 | `(#:tests? #f |
| 377 | ;; The compress-documentation phase doesn't pick up on our manpages as | 377 | #:make-flags ,#~(list (string-append "prefix=" #$output)) |
| 378 | ;; its regex doesn't support trailing letters, so manually compress. | ||
| 379 | #:make-flags ,#~(list (string-append "prefix=" #$output) "gz") | ||
| 380 | #:license-file-regexp "POSIX-COPYRIGHT" | 378 | #:license-file-regexp "POSIX-COPYRIGHT" |
| 381 | #:phases (modify-phases %standard-phases (delete 'configure)))) | 379 | ;; The build phase only compresses documentation, which we already do. |
| 380 | #:phases (modify-phases %standard-phases (delete 'configure) | ||
| 381 | (delete 'build)))) | ||
| 382 | (home-page "https://www.kernel.org/doc/man-pages/") | 382 | (home-page "https://www.kernel.org/doc/man-pages/") |
| 383 | (synopsis "Man pages from the POSIX.1-2013 standard") | 383 | (synopsis "Man pages from the POSIX.1-2013 standard") |
| 384 | (description | 384 | (description |
