gnu: xfsprogs: Omit static library.
* gnu/packages/linux.scm (xfsprogs)[arguments]: Add "--disable-static" to #:configure-flags. (xfsprogs-static)[arguments]: Undo it.master
parent
3ec27a7436
commit
215524a116
|
@ -7693,6 +7693,8 @@ compatible with Python's ConfigParser style of .INI files, including RFC
|
||||||
(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"
|
||||||
|
#:configure-flags
|
||||||
|
(list "--disable-static")
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list "V=1")
|
(list "V=1")
|
||||||
#:phases
|
#:phases
|
||||||
|
@ -7732,6 +7734,9 @@ file systems.")
|
||||||
(outputs (list "out"))
|
(outputs (list "out"))
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments xfsprogs)
|
(substitute-keyword-arguments (package-arguments xfsprogs)
|
||||||
|
((#:configure-flags configure-flags '())
|
||||||
|
`(append ,configure-flags
|
||||||
|
(list "--enable-static")))
|
||||||
((#:make-flags make-flags ''())
|
((#:make-flags make-flags ''())
|
||||||
`(cons* "LLDFLAGS=-all-static" ,make-flags))
|
`(cons* "LLDFLAGS=-all-static" ,make-flags))
|
||||||
((#:phases _ ''())
|
((#:phases _ ''())
|
||||||
|
|
Reference in New Issue