mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
gnu: xfsprogs: Omit static library.
* gnu/packages/linux.scm (xfsprogs)[arguments]: Add "--disable-static" to #:configure-flags. (xfsprogs-static)[arguments]: Undo it.
This commit is contained in:
parent
3ec27a7436
commit
215524a116
1 changed files with 5 additions and 0 deletions
|
@ -7693,6 +7693,8 @@ (define-public xfsprogs
|
|||
(outputs (list "out" "python"))
|
||||
(arguments
|
||||
`(#:tests? #f ; kernel/user integration tests are in package "xfstests"
|
||||
#:configure-flags
|
||||
(list "--disable-static")
|
||||
#:make-flags
|
||||
(list "V=1")
|
||||
#:phases
|
||||
|
@ -7732,6 +7734,9 @@ (define-public xfsprogs/static
|
|||
(outputs (list "out"))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments xfsprogs)
|
||||
((#:configure-flags configure-flags '())
|
||||
`(append ,configure-flags
|
||||
(list "--enable-static")))
|
||||
((#:make-flags make-flags ''())
|
||||
`(cons* "LLDFLAGS=-all-static" ,make-flags))
|
||||
((#:phases _ ''())
|
||||
|
|
Loading…
Reference in a new issue