From 57ba8108f12a1acd894ab5664c7230b85015356b Mon Sep 17 00:00:00 2001 From: maxice8 Date: Thu, 22 Nov 2018 17:36:59 -0200 Subject: [PATCH] meson: Fix configure when systemd option is set to false Otherwise it fails with systemd variable not found. --- src/daemon/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon/meson.build b/src/daemon/meson.build index fb694e7cc..f2a327fb8 100644 --- a/src/daemon/meson.build +++ b/src/daemon/meson.build @@ -29,6 +29,6 @@ executable('pipewire', dependencies : [pipewire_dep], ) -if systemd.found() +if get_option('systemd') and systemd.found() subdir('systemd') endif