mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: libvirt: Use absolute dnsmasq.
Fixes <https://bugs.gnu.org/57272>. Reported by Lars-Dominik Braun <lars@6xq.net>. * gnu/packages/virtualization.scm (libvirt)[arguments]: Substitute the absolute dnsmasq file name. Disable one test. Co-authored-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
9529384c92
commit
acbf2f9def
1 changed files with 7 additions and 0 deletions
|
@ -1311,9 +1311,16 @@ (define-public libvirt
|
|||
(substitute* "scripts/meson-install-dirs.py"
|
||||
(("destdir = .*")
|
||||
"destdir = '/tmp'"))))
|
||||
(add-after 'unpack 'use-absolute-dnsmasq
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(let ((dnsmasq (search-input-file inputs "sbin/dnsmasq")))
|
||||
(substitute* "src/util/virdnsmasq.c"
|
||||
(("#define DNSMASQ \"dnsmasq\"")
|
||||
(string-append "#define DNSMASQ \"" dnsmasq "\""))))))
|
||||
(add-before 'configure 'disable-broken-tests
|
||||
(lambda _
|
||||
(let ((tests (list "commandtest" ; hangs idly
|
||||
"networkxml2conftest" ; fails with absolute dnsmasq
|
||||
"qemuxml2argvtest" ; fails
|
||||
"virnetsockettest"))) ; tries to network
|
||||
(substitute* "tests/meson.build"
|
||||
|
|
Loading…
Reference in a new issue