From 91f78f58c4ca88b9b1fa2458e1204db11820e0fa Mon Sep 17 00:00:00 2001 From: Jehan Date: Fri, 27 Mar 2026 17:33:01 +0100 Subject: [PATCH] meson: make error messages a bit more accurate on what was tested. As a follow-up of the previous INSTALL update (complement for #16115). --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index c2158da09a..02f4ed211d 100644 --- a/meson.build +++ b/meson.build @@ -1234,12 +1234,12 @@ foreach py : py_candidates endforeach if not python.found() or not python.language_version().version_compare(python3_minver) - error('No suitable Python installation found. Minimum supported version: @0@'.format(python3_minver)) + error('No suitable Python installation (with cairo and gi modules) found. Minimum supported version: @0@'.format(python3_minver)) endif message('Found Python @0@'.format(python.language_version())) if pygobject_found.returncode() != 0 or not pygobject_found.stdout().strip().version_compare(pygobject_minver) or not pygobject_gexiv2_found - error('No suitable PyGObject (with Pycairo and Gexiv2 modules) found. Minimum supported version: @0@'.format(pygobject_minver)) + error('No suitable PyGObject (with GExiv2 submodule) found. Minimum supported version: @0@'.format(pygobject_minver)) endif message('Found PyGObject: @0@'.format(pygobject_found.stdout().strip()))