From 9be1af2b1a4b4040c823206099de6705363b1349 Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Fri, 2 Jan 2026 15:07:31 -0300 Subject: [PATCH] meson: Fix python not being found on MacPorts environment Let's use the same check as babl and GEGL meson.build, which is able to find python when it is an Apple .framework as well. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 839fcc8ebb..0185a77570 100644 --- a/meson.build +++ b/meson.build @@ -130,7 +130,7 @@ versionconfig.set('GIMP_API_VERSION', gimp_api_version) pkgconfig = import('pkgconfig') i18n = import('i18n') gnome = import('gnome') -pythonmod = import('python') +python = import('python').find_installation() simd = import('unstable-simd') fs = import('fs')