Skip to content

Commit cb044e7

Browse files
authored
meson: Replace join_path with intuitive slash (#213)
1 parent 79fa6d5 commit cb044e7

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

platform-data/data/meson.build

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
i18n.merge_file(
22
input: 'platform.appdata.xml.in',
33
output: 'io.elementary.Platform.appdata.xml',
4-
po_dir: join_paths(meson.project_source_root(), 'po'),
4+
po_dir: meson.project_source_root() / 'po',
55
type: 'xml',
66
install: true,
7-
install_dir: join_paths(get_option('datadir'), 'metainfo'),
7+
install_dir: get_option('datadir') / 'metainfo',
88
)
99

1010
i18n.merge_file(
1111
input: 'sdk.appdata.xml.in',
1212
output: 'io.elementary.Sdk.appdata.xml',
13-
po_dir: join_paths(meson.project_source_root(), 'po'),
13+
po_dir: meson.project_source_root() / 'po',
1414
type: 'xml',
1515
install: true,
16-
install_dir: join_paths(get_option('datadir'), 'metainfo'),
16+
install_dir: get_option('datadir') / 'metainfo',
1717
)

0 commit comments

Comments
 (0)