From 26928a249a6344ca7ce9e8f36d76c7393c2524be Mon Sep 17 00:00:00 2001 From: Romain Failliot Date: Mon, 3 Apr 2023 11:10:12 -0400 Subject: [PATCH] fix(meson): `path()` is deprecated Replaced it with `full_path()`. --- src/diffuse/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/diffuse/meson.build b/src/diffuse/meson.build index c8ff065..17c1cb5 100644 --- a/src/diffuse/meson.build +++ b/src/diffuse/meson.build @@ -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')))