From 34382601cb9529aa195e01e1e8392ab9c4e99991 Mon Sep 17 00:00:00 2001 From: Hari Rana Date: Sun, 29 Oct 2023 21:35:18 -0400 Subject: [PATCH] Replace ExternalProgram.path with full_path Fix warning ``` WARNING: Deprecated features used: * 0.55.0: {'ExternalProgram.path'} ``` --- src/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index b7259ba..3f76cd5 100644 --- a/src/meson.build +++ b/src/meson.build @@ -12,7 +12,7 @@ gnome.compile_resources('iplookup', 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)