guix-commits
[Top][All Lists]
Advanced

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

44/75: gnu: man-pages-posix: Remove redundant manpage compression.


From: guix-commits
Subject: 44/75: gnu: man-pages-posix: Remove redundant manpage compression.
Date: Sun, 21 Jan 2024 13:21:47 -0500 (EST)

apteryx pushed a commit to branch core-updates
in repository guix.

commit e118e90b591f390c8fffddd973fc2d2996794a07
Author: Lilah Tascheter <lilah@lunabee.space>
AuthorDate: Wed Oct 19 10:27:57 2022 -0500

    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>
---
 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 71fcf2f4bc..1c5ba81be4 100644
--- a/gnu/packages/man.scm
+++ b/gnu/packages/man.scm
@@ -329,11 +329,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



reply via email to

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