From a3ef89714f2f1afeca2d58ce686fbb84a5fca64c Mon Sep 17 00:00:00 2001 From: Lilah Tascheter Date: Wed, 19 Oct 2022 10:27:57 -0500 Subject: 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 --- gnu/packages/man.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/man.scm b/gnu/packages/man.scm index 780f6bf6d8..f4b995691c 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.") (build-system gnu-build-system) (arguments `(#:tests? #f - ;; The compress-documentation phase doesn't pick up on our manpages as - ;; its regex doesn't support trailing letters, so manually compress. - #:make-flags ,#~(list (string-append "prefix=" #$output) "gz") + #:make-flags ,#~(list (string-append "prefix=" #$output)) #:license-file-regexp "POSIX-COPYRIGHT" - #:phases (modify-phases %standard-phases (delete 'configure)))) + ;; The build phase only compresses documentation, which we already do. + #:phases (modify-phases %standard-phases (delete 'configure) + (delete 'build)))) (home-page "https://www.kernel.org/doc/man-pages/") (synopsis "Man pages from the POSIX.1-2013 standard") (description -- cgit v1.2.3