mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-12 13:30:15 -05:00
meson: Fix configure when systemd option is set to false
Otherwise it fails with systemd variable not found.
This commit is contained in:
parent
14ebb85e74
commit
57ba8108f1
1 changed files with 1 additions and 1 deletions
|
|
@ -29,6 +29,6 @@ executable('pipewire',
|
||||||
dependencies : [pipewire_dep],
|
dependencies : [pipewire_dep],
|
||||||
)
|
)
|
||||||
|
|
||||||
if systemd.found()
|
if get_option('systemd') and systemd.found()
|
||||||
subdir('systemd')
|
subdir('systemd')
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue