meson: use join_paths()

This commit is contained in:
Daniel Eklöf 2019-05-03 23:09:38 +02:00
parent 64171b412a
commit 789cdd949b
3 changed files with 4 additions and 4 deletions

View file

@ -7,7 +7,7 @@ foreach deco : ['background', 'stack', 'underline']
dependencies: deco_sdk,
name_prefix: 'decoration_',
install: true,
install_dir: get_option('libdir') + '/f00bar')
install_dir: join_paths(get_option('libdir'), 'f00bar'))
else
lib = static_library(
'decoration_@0@'.format(deco), '@0@.c'.format(deco), dependencies: deco_sdk)