diff options
author | George Kiagiadakis <george.kiagiadakis@collabora.com> | 2021-05-06 12:15:52 +0300 |
---|---|---|
committer | George Kiagiadakis <george.kiagiadakis@collabora.com> | 2021-07-28 13:19:02 +0300 |
commit | d1433ce1058d7eb22ccb05ff844b57781985c61d (patch) | |
tree | 7b96e86b1c758cb59ec46567d413718a568445df /lib/meson.build | |
parent | 85fdaa998e2a15c5debe70e1b88afa92a5b63425 (diff) |
meson: replace join_paths() with operator /
Signed-off-by: George Kiagiadakis <george.kiagiadakis@collabora.com>
Diffstat (limited to 'lib/meson.build')
-rw-r--r-- | lib/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/meson.build b/lib/meson.build index c7b2635..54a103e 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -24,7 +24,7 @@ icipc_lib_headers = files( install_headers(icipc_lib_headers, - install_dir : join_paths(get_option('includedir'), 'icipc-' + wireplumber_api_version, 'icipc') + install_dir : get_option('includedir') / 'icipc-' + wireplumber_api_version / 'icipc' ) icipc_lib = library('icipc-' + wireplumber_api_version, |