mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-06 13:30:01 -05:00
meson: replace join_paths(a, b) with a / b
More readable and from the meson reference manual: (since 0.49.0) Using the/ operator on strings is equivalent to calling join_paths.
This commit is contained in:
parent
2f78829fda
commit
223f20709d
34 changed files with 98 additions and 98 deletions
|
|
@ -15,7 +15,7 @@ pipewire_ext_headers = [
|
|||
]
|
||||
|
||||
install_headers(pipewire_ext_sm_headers,
|
||||
subdir : join_paths(pipewire_headers_dir, 'extensions', 'session-manager'))
|
||||
subdir : pipewire_headers_dir / 'extensions' / 'session-manager')
|
||||
|
||||
install_headers(pipewire_ext_headers,
|
||||
subdir : join_paths(pipewire_headers_dir, 'extensions'))
|
||||
subdir : pipewire_headers_dir / 'extensions')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue