mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-18 08:51:48 -05:00
gnu: xfsprogs: Build verbosely.
* gnu/packages/linux.scm (xfsprogs)[arguments]: Add "V=1" to #:make-flags, and honour them in custom phases.
This commit is contained in:
parent
31a3c9b441
commit
bea4a3abec
1 changed files with 4 additions and 2 deletions
|
@ -7700,6 +7700,8 @@ (define-public xfsprogs
|
|||
(outputs (list "out" "python"))
|
||||
(arguments
|
||||
`(#:tests? #f ; kernel/user integration tests are in package "xfstests"
|
||||
#:make-flags
|
||||
(list "V=1")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'install 'separate-python-output
|
||||
|
@ -7713,8 +7715,8 @@ (define-public xfsprogs
|
|||
(string-append python script)))
|
||||
(list "/sbin/xfs_scrub_all")))))
|
||||
(add-after 'install 'install-headers
|
||||
(lambda _
|
||||
(invoke "make" "install-dev"))))))
|
||||
(lambda* (#:key make-flags #:allow-other-keys)
|
||||
(apply invoke "make" "install-dev" make-flags))))))
|
||||
(native-inputs
|
||||
`(("gettext" ,gettext-minimal)))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue