summaryrefslogtreecommitdiff
path: root/gnu/packages/man.scm
diff options
context:
space:
mode:
authorLilah Tascheter <lilah@lunabee.space>2022-08-27 18:37:55 -0500
committerLudovic Courtès <ludo@gnu.org>2022-09-08 16:22:22 +0200
commitb2e560aca4f6bbd0d43ae5c821f4add6e47da801 (patch)
treed4ed66fc2f7187b1809d4334149aa46700c3ce5e /gnu/packages/man.scm
parent4ace4692c09ec65a5be7968b44ebd6e42a9c3b32 (diff)
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>
Diffstat (limited to 'gnu/packages/man.scm')
-rw-r--r--gnu/packages/man.scm6
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/man.scm b/gnu/packages/man.scm
index f1e9a7aa782..50796df89e4 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
282 (base32 "12vb15gs56g8wl5nqlm4llr508brh4m2lfknhq4lizbxzqzawkb1")))) 282 (base32 "12vb15gs56g8wl5nqlm4llr508brh4m2lfknhq4lizbxzqzawkb1"))))
283 (build-system gnu-build-system) 283 (build-system gnu-build-system)
284 (arguments 284 (arguments
285 '(#:phases (modify-phases %standard-phases (delete 'configure)) 285 `(#:phases (modify-phases %standard-phases (delete 'configure))
286 286
287 ;; The 'all' target depends on three targets that directly populate 287 ;; The 'all' target depends on three targets that directly populate
288 ;; $(MANDIR) based on its current contents. Doing that in parallel 288 ;; $(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
290 #:parallel-build? #f 290 #:parallel-build? #f
291 291
292 #:tests? #f 292 #:tests? #f
293 #:make-flags (list (string-append "mandir=" 293 #:make-flags ,#~(list (string-append "mandir=" #$output "/share/man"))))
294 (assoc-ref %outputs "out")
295 "/share/man"))))
296 (home-page "https://www.kernel.org/doc/man-pages/") 294 (home-page "https://www.kernel.org/doc/man-pages/")
297 (synopsis "Development manual pages from the Linux project") 295 (synopsis "Development manual pages from the Linux project")
298 (description 296 (description