mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
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>
This commit is contained in:
parent
4ace4692c0
commit
b2e560aca4
1 changed files with 2 additions and 4 deletions
|
@ -282,7 +282,7 @@ (define-public man-pages
|
|||
(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 @@ (define-public man-pages
|
|||
#: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
|
||||
|
|
Loading…
Reference in a new issue