From edab096c642c6591eab5dd65e5f544ddbe70cc49 Mon Sep 17 00:00:00 2001 From: Daniel Campello Date: Thu, 15 Oct 2020 13:46:17 -0600 Subject: [PATCH] trivial: Fix build error on build=standalone and polkit=true This fixes error introduced by 11b71f49787190a9924ad35dec33180b9d4f0081 --- src/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index efe7764b5..678694b19 100644 --- a/src/meson.build +++ b/src/meson.build @@ -11,7 +11,7 @@ daemon_dep = [] if get_option('systemd') systemd_src += 'fu-systemd.c' endif -if get_option('polkit') +if build_daemon and get_option('polkit') client_src += 'fu-polkit-agent.c' daemon_dep += polkit endif