gnu: mdadm-static: Fix build.
This follows up on commit 3d7a1b84c5
.
* gnu/packages/linux.scm (mdadm-static)[arguments]:
Add "-DNO_LIBUDEV" to CXFLAGS.
master
parent
55bf2d31e9
commit
2860bb2779
|
@ -5078,7 +5078,9 @@ arrays when needed.")
|
|||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments mdadm)
|
||||
((#:make-flags flags)
|
||||
#~(cons "LDFLAGS = -static" #$flags))
|
||||
#~(cons* "LDFLAGS = -static"
|
||||
"CXFLAGS = -DNO_LIBUDEV"
|
||||
#$flags))
|
||||
((#:phases phases)
|
||||
#~(modify-phases #$phases
|
||||
(add-after 'install 'remove-cruft
|
||||
|
|
Reference in New Issue