guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#58638] [PATCH core-updates 2/2] gnu: man-pages-posix: Remove redund


From: Lilah Tascheter
Subject: [bug#58638] [PATCH core-updates 2/2] gnu: man-pages-posix: Remove redundant manpage compression.
Date: Wed, 19 Oct 2022 10:27:57 -0500

* gnu/packages/man.scm (man-pages-posix)[arguments]: Don't run build
  phase.
---
 gnu/packages/man.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/man.scm b/gnu/packages/man.scm
index 9a3297fcaf..b56262d832 100644
--- a/gnu/packages/man.scm
+++ b/gnu/packages/man.scm
@@ -315,11 +315,11 @@ (define-public man-pages-posix
     (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
-- 
2.37.3






reply via email to

[Prev in Thread] Current Thread [Next in Thread]