aboutsummaryrefslogtreecommitdiff
path: root/xcursor
diff options
context:
space:
mode:
authorilliliti <illiliti@protonmail.com>2022-06-28 10:51:10 +0300
committerSimon Ser <contact@emersion.fr>2022-09-14 10:02:56 +0200
commit1266f7424f711a3e67477b4aa5192b3c4285c7f4 (patch)
tree0ba691dd5dab7a7490c332db395efdece3eae781 /xcursor
parent42ae1e75aa22c9f8063300dcca846b35c03022e5 (diff)
meson: replace join_paths() with / operator
Diffstat (limited to 'xcursor')
-rw-r--r--xcursor/meson.build2
1 files changed, 1 insertions, 1 deletions
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')