guix-commits
[Top][All Lists]
Advanced

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

09/21: gnu: man-pages: Update to new style.


From: guix-commits
Subject: 09/21: gnu: man-pages: Update to new style.
Date: Thu, 8 Sep 2022 10:24:07 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit b2e560aca4f6bbd0d43ae5c821f4add6e47da801
Author: Lilah Tascheter <lilah@lunabee.space>
AuthorDate: Sat Aug 27 18:37:55 2022 -0500

    gnu: man-pages: Update to new style.
    
    * gnu/packages/man.scm (man-pages)[arguments]: Refer to package output
      using gexps instead of assoc-ref on a parameter.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/man.scm | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/man.scm b/gnu/packages/man.scm
index f1e9a7aa78..50796df89e 100644
--- a/gnu/packages/man.scm
+++ b/gnu/packages/man.scm
@@ -282,7 +282,7 @@ PostScript, and PDF.  Additional tools include the 
@command{man} viewer, and
         (base32 "12vb15gs56g8wl5nqlm4llr508brh4m2lfknhq4lizbxzqzawkb1"))))
     (build-system gnu-build-system)
     (arguments
-     '(#:phases (modify-phases %standard-phases (delete 'configure))
+     `(#:phases (modify-phases %standard-phases (delete 'configure))
 
        ;; The 'all' target depends on three targets that directly populate
        ;; $(MANDIR) based on its current contents.  Doing that in parallel
@@ -290,9 +290,7 @@ PostScript, and PDF.  Additional tools include the 
@command{man} viewer, and
        #:parallel-build? #f
 
        #:tests? #f
-       #:make-flags (list (string-append "mandir="
-                                         (assoc-ref %outputs "out")
-                                         "/share/man"))))
+       #:make-flags ,#~(list (string-append "mandir=" #$output "/share/man"))))
     (home-page "https://www.kernel.org/doc/man-pages/";)
     (synopsis "Development manual pages from the Linux project")
     (description



reply via email to

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