guix-commits
[Top][All Lists]
Advanced

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

16/22: openssl: Move all man pages to separate output, not only man3.


From: guix-commits
Subject: 16/22: openssl: Move all man pages to separate output, not only man3.
Date: Wed, 14 Jul 2021 13:20:52 -0400 (EDT)

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

commit 3e42c2bfbb3d0fc60f2f3473f3c8669c749b94b3
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Wed Jul 14 13:13:01 2021 +0200

    openssl: Move all man pages to separate output, not only man3.
    
    There does not seem to be any reason to only move man3 pages.
    So, move all man pages to a separate output for documentation.
    
    * gnu/packages/tls.scm
      (openssl)[arguments]<#:phases>{move-extra-documentation}: Move
      all man pages, not only man3.
    
    Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
 gnu/packages/tls.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index 92d7950..b58cb94 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -413,16 +413,16 @@ required structures.")
                          (find-files lib "\\.a$")))))
          (add-after 'install 'move-extra-documentation
            (lambda _
-             ;; Move man3 pages and full HTML documentation to "doc".
+             ;; Move man pages and full HTML documentation to "doc".
              (let* ((out    #$output)
-                    (man3   (string-append out "/share/man/man3"))
-                    (html (string-append out "/share/doc/openssl"))
+                    (man    (string-append out "/share/man"))
+                    (html   (string-append out "/share/doc/openssl"))
                     (doc    #$output:doc)
-                    (man-target (string-append doc "/share/man/man3"))
+                    (man-target (string-append doc "/share/man"))
                     (html-target (string-append doc "/share/doc/openssl")))
-               (mkdir-p (dirname man3-target))
+               (mkdir-p (dirname man-target))
                (mkdir-p (dirname html-target))
-               (rename-file man3 man-target)
+               (rename-file man man-target)
                (rename-file html html-target))))
          (add-after
              'install 'remove-miscellany



reply via email to

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