From c7c53ff03d6cbf6525ae7b95c286166524c924ea Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Wed, 30 May 2018 14:12:11 +0100 Subject: [PATCH] trivial: Don't build the thunderbolt plugins based on udev presence GUdev has to exist as a runtime dep, and this check for udev.pc will do nothing helpful. --- plugins/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/meson.build b/plugins/meson.build index 4567e192d..501bb2ee9 100644 --- a/plugins/meson.build +++ b/plugins/meson.build @@ -18,7 +18,7 @@ if get_option('plugin_amt') subdir('amt') endif -if get_option('plugin_thunderbolt') and udev.found() +if get_option('plugin_thunderbolt') subdir('thunderbolt') subdir('thunderbolt-power') endif