From fa7580f60f85fc92dee051907a51db9e9a76fb56 Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Fri, 22 Jul 2022 12:04:51 -0700 Subject: [PATCH] build: always define needs_service_access --- meson.build | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/meson.build b/meson.build index b397750d..ac279048 100644 --- a/meson.build +++ b/meson.build @@ -197,10 +197,7 @@ int main(void) { config_h.set10('HAVE_STDATOMIC_H', true) endif -if get_option('libsysprof') or get_option('agent') - needs_service_access = true -endif - +needs_service_access = get_option('libsysprof') or get_option('agent') if needs_service_access or get_option('sysprofd') == 'bundled' install_service_files = true endif