From b76b1bb22d5a0030a8d861b17da602fbe9ca6e8d Mon Sep 17 00:00:00 2001 From: Sander Sweers Date: Fri, 12 May 2023 18:21:01 +0200 Subject: [PATCH] target meson 0.56 which is in bullseye --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 4128c1a4f..5ffcbf5c0 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project( 'blueman', 'c', version: '2.4-alpha', license: 'GPL3', - meson_version: '>=0.50.0', + meson_version: '>=0.56.0', default_options: 'b_lundef=false' ) @@ -51,7 +51,7 @@ conf_data.set('icondir', join_paths(prefix, datadir, 'icons')) conf_data.set('dhconfig', get_option('dhcp-config-path')) conf_data.set('POLKIT', have_polkit) conf_data.set('GETTEXT_PACKAGE', package_name) -conf_data.set('PYTHON', pyinstall.path()) +conf_data.set('PYTHON', pyinstall.full_path()) # Check for build dependencies pythonlib = pyinstall.dependency()