From e6a582c3aaaae614c62df1c2786547bd1daa745e Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Fri, 22 Jul 2022 12:09:24 -0700 Subject: [PATCH] build: same thing for install_service_files --- meson.build | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/meson.build b/meson.build index ac279048..eb78c1ac 100644 --- a/meson.build +++ b/meson.build @@ -198,9 +198,7 @@ int main(void) { 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 +install_service_files = needs_service_access or get_option('sysprofd') == 'bundled' subdir('src') subdir('data')