mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-18 17:01:51 -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"))
|
(outputs (list "out" "python"))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; kernel/user integration tests are in package "xfstests"
|
`(#:tests? #f ; kernel/user integration tests are in package "xfstests"
|
||||||
|
#:make-flags
|
||||||
|
(list "V=1")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'install 'separate-python-output
|
(add-after 'install 'separate-python-output
|
||||||
|
@ -7713,8 +7715,8 @@ (define-public xfsprogs
|
||||||
(string-append python script)))
|
(string-append python script)))
|
||||||
(list "/sbin/xfs_scrub_all")))))
|
(list "/sbin/xfs_scrub_all")))))
|
||||||
(add-after 'install 'install-headers
|
(add-after 'install 'install-headers
|
||||||
(lambda _
|
(lambda* (#:key make-flags #:allow-other-keys)
|
||||||
(invoke "make" "install-dev"))))))
|
(apply invoke "make" "install-dev" make-flags))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("gettext" ,gettext-minimal)))
|
`(("gettext" ,gettext-minimal)))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Reference in a new issue