Skip to content

Commit 26928a2

Browse files
committed
fix(meson): path() is deprecated
Replaced it with `full_path()`.
1 parent ba7d00a commit 26928a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/diffuse/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ moduledir = join_paths(pkgdatadir, 'diffuse')
44
python = import('python')
55

66
conf = configuration_data()
7-
conf.set('PYTHON', python.find_installation('python3').path())
7+
conf.set('PYTHON', python.find_installation('python3').full_path())
88
conf.set('VERSION', meson.project_version())
99
conf.set('PKGDATADIR', pkgdatadir)
1010
conf.set('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))

0 commit comments

Comments
 (0)