From d1433ce1058d7eb22ccb05ff844b57781985c61d Mon Sep 17 00:00:00 2001 From: George Kiagiadakis Date: Thu, 6 May 2021 12:15:52 +0300 Subject: meson: replace join_paths() with operator / Signed-off-by: George Kiagiadakis --- lib/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- cgit 1.2.3-korg