mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -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
|
|
@ -25,7 +25,7 @@ foreach a : test_apps
|
|||
|
||||
if installed_tests_enabled
|
||||
test_conf = configuration_data()
|
||||
test_conf.set('exec', join_paths(installed_tests_execdir, 'pw-' + a))
|
||||
test_conf.set('exec', installed_tests_execdir / 'pw-' + a)
|
||||
configure_file(
|
||||
input: installed_tests_template,
|
||||
output: 'pw-' + a + '.test',
|
||||
|
|
@ -45,7 +45,7 @@ test('pw-test-cpp', test_cpp)
|
|||
|
||||
if installed_tests_enabled
|
||||
test_conf = configuration_data()
|
||||
test_conf.set('exec', join_paths(installed_tests_execdir, 'pw-test-cpp'))
|
||||
test_conf.set('exec', installed_tests_execdir / 'pw-test-cpp')
|
||||
configure_file(
|
||||
input: installed_tests_template,
|
||||
output: 'pw-test-cpp.test',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue