mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 12:17:10 -05:00
gnu: mdadm-static: Fix build.
This follows up on commit 3d7a1b84c5
.
* gnu/packages/linux.scm (mdadm-static)[arguments]:
Add "-DNO_LIBUDEV" to CXFLAGS.
This commit is contained in:
parent
55bf2d31e9
commit
2860bb2779
1 changed files with 3 additions and 1 deletions
|
@ -5078,7 +5078,9 @@ (define-public mdadm-static
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments mdadm)
|
(substitute-keyword-arguments (package-arguments mdadm)
|
||||||
((#:make-flags flags)
|
((#:make-flags flags)
|
||||||
#~(cons "LDFLAGS = -static" #$flags))
|
#~(cons* "LDFLAGS = -static"
|
||||||
|
"CXFLAGS = -DNO_LIBUDEV"
|
||||||
|
#$flags))
|
||||||
((#:phases phases)
|
((#:phases phases)
|
||||||
#~(modify-phases #$phases
|
#~(modify-phases #$phases
|
||||||
(add-after 'install 'remove-cruft
|
(add-after 'install 'remove-cruft
|
||||||
|
|
Loading…
Reference in a new issue