From f8023586d7384a68e3805dbf1945755666ae3dc7 Mon Sep 17 00:00:00 2001 From: Foldex Date: Thu, 3 Nov 2022 20:06:16 -0400 Subject: [PATCH] Meson: Fix Deprecated Path Function --- src/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index f8acff2..738a10d 100644 --- a/src/meson.build +++ b/src/meson.build @@ -21,7 +21,7 @@ gnome.compile_resources('adwaita-steam-gtk', 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', join_paths(get_option('prefix'), get_option('localedir'))) conf.set('pkgdatadir', pkgdatadir)