mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-18 07:00:06 -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
|
|
@ -11,11 +11,11 @@ foreach c : conf_files
|
|||
configure_file(input : c.get(0),
|
||||
output : c.get(1),
|
||||
configuration : conf_config,
|
||||
install_dir : join_paths(conf_install_dir, 'media-session.d'))
|
||||
install_dir : conf_install_dir / 'media-session.d')
|
||||
endforeach
|
||||
|
||||
install_data(
|
||||
sources : [
|
||||
'with-jack',
|
||||
'with-pulseaudio' ],
|
||||
install_dir : join_paths(conf_install_dir, 'media-session.d'))
|
||||
install_dir : conf_install_dir / 'media-session.d')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue