mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: lvm2: Programs such as 'dmsetup' now have a correct RUNPATH.
* gnu/packages/linux.scm (alsa-utils): Add comment. (lvm2): Add LDFLAGS as a configure flag.
This commit is contained in:
parent
a4888e2e0f
commit
f2817d4303
1 changed files with 10 additions and 1 deletions
|
@ -613,6 +613,9 @@ (define-public alsa-utils
|
|||
(arguments
|
||||
;; XXX: Disable man page creation until we have DocBook.
|
||||
'(#:configure-flags (list "--disable-xmlto"
|
||||
|
||||
;; The udev rule is responsible for restoring
|
||||
;; the volume.
|
||||
(string-append "--with-udev-rules-dir="
|
||||
(assoc-ref %outputs "out")
|
||||
"/lib/udev/rules.d"))
|
||||
|
@ -1397,7 +1400,13 @@ (define-public lvm2
|
|||
(assoc-ref %outputs "out")
|
||||
"/etc/lvm")
|
||||
"--enable-udev_sync"
|
||||
"--enable-udev_rules")
|
||||
"--enable-udev_rules"
|
||||
|
||||
;; Make sure programs such as 'dmsetup' can
|
||||
;; find libdevmapper.so.
|
||||
(string-append "LDFLAGS=-Wl,-rpath="
|
||||
(assoc-ref %outputs "out")
|
||||
"/lib"))
|
||||
|
||||
;; The tests use 'mknod', which requires root access.
|
||||
#:tests? #f))
|
||||
|
|
Loading…
Reference in a new issue