fix(meson): `path()` is deprecated

Replaced it with `full_path()`.
This commit is contained in:
Romain Failliot 2023-04-03 11:10:12 -04:00
parent ba7d00af69
commit 26928a249a
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ moduledir = join_paths(pkgdatadir, 'diffuse')
python = import('python')
conf = configuration_data()
conf.set('PYTHON', python.find_installation('python3').path())
conf.set('PYTHON', python.find_installation('python3').full_path())
conf.set('VERSION', meson.project_version())
conf.set('PKGDATADIR', pkgdatadir)
conf.set('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))