me
/
guix
Archived
1
0
Fork 0

gnu: xfsprogs: Build verbosely.

* gnu/packages/linux.scm (xfsprogs)[arguments]: Add "V=1"
to #:make-flags, and honour them in custom phases.
master
Tobias Geerinckx-Rice 2021-09-22 19:53:12 +02:00
parent 31a3c9b441
commit bea4a3abec
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 4 additions and 2 deletions

View File

@ -7700,6 +7700,8 @@ compatible with Python's ConfigParser style of .INI files, including RFC
(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 @@ compatible with Python's ConfigParser style of .INI files, including RFC
(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