gnu: lvm2: Add device-mapper-event support.
* GNU/packages/linux.scm (lvm2)[configure-flags]: Build device-mapper-event.master
parent
c229fb3d88
commit
a3ed69b694
|
@ -2127,12 +2127,24 @@ time.")
|
||||||
"--enable-udev_sync"
|
"--enable-udev_sync"
|
||||||
"--enable-udev_rules"
|
"--enable-udev_rules"
|
||||||
"--enable-pkgconfig"
|
"--enable-pkgconfig"
|
||||||
|
"--enable-cmdlib"
|
||||||
|
"--enable-dmeventd" ; Requires '--enable-cmdlib'.
|
||||||
|
|
||||||
;; Make sure programs such as 'dmsetup' can
|
;; Make sure programs such as 'dmsetup' can
|
||||||
;; find libdevmapper.so.
|
;; find libdevmapper.so.
|
||||||
(string-append "LDFLAGS=-Wl,-rpath="
|
(string-append "LDFLAGS=-Wl,-rpath="
|
||||||
(assoc-ref %outputs "out")
|
(assoc-ref %outputs "out")
|
||||||
"/lib"))
|
"/lib,-rpath="
|
||||||
|
(assoc-ref %outputs "out")
|
||||||
|
"/lib/device-mapper")
|
||||||
|
;; TODO: Patch make.tmpl.in to take LDFLAGS
|
||||||
|
;; into account so that we don't need to also
|
||||||
|
;; set CLDFLAGS.
|
||||||
|
(string-append "CLDFLAGS=-Wl,-rpath="
|
||||||
|
(assoc-ref %outputs "out")
|
||||||
|
"/lib,-rpath="
|
||||||
|
(assoc-ref %outputs "out")
|
||||||
|
"/lib/device-mapper"))
|
||||||
|
|
||||||
;; The tests use 'mknod', which requires root access.
|
;; The tests use 'mknod', which requires root access.
|
||||||
#:tests? #f))
|
#:tests? #f))
|
||||||
|
|
Reference in New Issue