gnu: man-pages: Use LIST of arguments.

We're already using a Gexp for #:make-flags; this unweirds that ,#~.

* gnu/packages/man.scm (man-pages)[arguments]: Use LIST & G-expressions.
This commit is contained in:
Tobias Geerinckx-Rice 2022-10-09 02:00:00 +02:00
parent bc435c595f
commit ca73325d75
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -282,8 +282,9 @@ (define-public man-pages
(base32 "1252c1356z5spya3yl0lcmmymglx3bmfwmamiz1y5l13xqpwbnwy"))))
(build-system gnu-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(list
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'skip-html
;; As of 6.00, this package tries to convert man pages to HTML with
;; man2html. The only Guix package currently providing that script
@ -300,7 +301,8 @@ (define-public man-pages
#:parallel-build? #f
#:tests? #f
#:make-flags ,#~(list (string-append "mandir=" #$output "/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