mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 04:45:58 +01:00
meson: replace join_paths() with / operator
This commit is contained in:
parent
42ae1e75aa
commit
1266f7424f
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
icondir = get_option('icon_directory')
|
icondir = get_option('icon_directory')
|
||||||
if icondir == ''
|
if icondir == ''
|
||||||
icondir = join_paths(get_option('prefix'), get_option('datadir'), 'icons')
|
icondir = get_option('prefix') / get_option('datadir') / 'icons'
|
||||||
endif
|
endif
|
||||||
|
|
||||||
add_project_arguments('-DICONDIR="@0@"'.format(icondir), language : 'c')
|
add_project_arguments('-DICONDIR="@0@"'.format(icondir), language : 'c')
|
||||||
|
|
Loading…
Reference in a new issue