mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-04 13:30:12 -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
7bc9c1ebfe
commit
0a8861bcbc
1 changed files with 1 additions and 1 deletions
|
|
@ -31,6 +31,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