1 When python3 links to a different runtime version than the one specified in the
2 Makefile, the build fails because versions are mixed up. This patch forces the
3 same version we set in our Makefile.
5 This is a Solaris specific change.
7 --- gobject-introspection-1.82.0/tools/meson.build.orig
8 +++ gobject-introspection-1.82.0/tools/meson.build
10 if cc.get_id() == 'msvc'
11 python_cmd = '/usr/bin/env ' + python.path()
13 - python_cmd = '/usr/bin/env python@0@'.format(python.language_version().split('.')[0])
14 + python_cmd = python.path()