From 1266f7424f711a3e67477b4aa5192b3c4285c7f4 Mon Sep 17 00:00:00 2001 From: illiliti Date: Tue, 28 Jun 2022 10:51:10 +0300 Subject: [PATCH] meson: replace join_paths() with / operator --- xcursor/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcursor/meson.build b/xcursor/meson.build index a167137a..c9f59293 100644 --- a/xcursor/meson.build +++ b/xcursor/meson.build @@ -1,6 +1,6 @@ icondir = get_option('icon_directory') if icondir == '' - icondir = join_paths(get_option('prefix'), get_option('datadir'), 'icons') + icondir = get_option('prefix') / get_option('datadir') / 'icons' endif add_project_arguments('-DICONDIR="@0@"'.format(icondir), language : 'c')