From 8e76abd1f4d9c504807cfe66f217f676463180a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nelson=20Ben=C3=ADtez=20Le=C3=B3n?= Date: Sun, 29 Jan 2023 01:15:04 +0000 Subject: shell: fix meson warning Fixes following Meson warning (given by Meson 0.62.1): meson.build:33: WARNING: Project targeting '>= 0.57.0' but tried to use feature deprecated since '0.55.0': ExternalProgram.path. use ExternalProgram.full_path() instead --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index b6a86a428..d45237e8c 100644 --- a/meson.build +++ b/meson.build @@ -30,7 +30,7 @@ config_h = configuration_data() py = import('python') python = py.find_installation('python3') -config_h.set_quoted('TEST_NM_PYTHON', python.path()) +config_h.set_quoted('TEST_NM_PYTHON', python.full_path()) if get_option('profile') == 'development' profile = 'Devel' -- cgit v1.2.1