From: Pavel Hrdina Date: Thu, 8 Oct 2020 10:46:11 +0000 (+0200) Subject: meson: build nodedev driver only if libvirtd is compiled X-Git-Tag: v6.9.0-rc1~208 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84852874857a8fe040dd2445a4ae28a2821959d6;p=thirdparty%2Flibvirt.git meson: build nodedev driver only if libvirtd is compiled Signed-off-by: Pavel Hrdina Reviewed-by: Andrea Bolognani --- diff --git a/meson.build b/meson.build index d5694fd0b6..6ee15ca8b8 100644 --- a/meson.build +++ b/meson.build @@ -1678,7 +1678,7 @@ if not get_option('driver_network').disabled() and conf.has('WITH_LIBVIRTD') and conf.set('WITH_NETWORK', 1) endif -if udev_dep.found() +if udev_dep.found() and conf.has('WITH_LIBVIRTD') conf.set('WITH_NODE_DEVICES', 1) endif