From 5d09600483e1c2edfc6b27fbd1ce06ecbe71f3a5 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Sat, 27 Nov 2021 19:10:18 +0000 Subject: [PATCH] Don't install DBus introspection data when using -Dintrospection=false --- src/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index e741c5c11..28f0cc19e 100644 --- a/src/meson.build +++ b/src/meson.build @@ -2,7 +2,7 @@ if get_option('tests') subdir('tests') endif -if build_daemon +if build_daemon and get_option('introspection') install_data(['org.freedesktop.fwupd.xml'], install_dir : join_paths(datadir, 'dbus-1', 'interfaces') )