From ae0d0720a4ca6421d35b5cd5d877d6447098bb73 Mon Sep 17 00:00:00 2001 From: Hari Rana Date: Thu, 22 Feb 2024 12:40:37 -0500 Subject: [PATCH] plugins/meson-templates: Use `full_path()` `path()` is deprecated --- src/plugins/meson-templates/resources/src/meson-py-gtk4.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/meson-templates/resources/src/meson-py-gtk4.build b/src/plugins/meson-templates/resources/src/meson-py-gtk4.build index a11e5979b..bc26cdcae 100644 --- a/src/plugins/meson-templates/resources/src/meson-py-gtk4.build +++ b/src/plugins/meson-templates/resources/src/meson-py-gtk4.build @@ -12,7 +12,7 @@ gnome.compile_resources('{{name}}', 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('localedir', get_option('prefix') / get_option('localedir')) conf.set('pkgdatadir', pkgdatadir) -- GitLab