json-glib: update to 1.10.6
[oi-userland.git] / components / library / gobject-introspection / patches / 04-specific-python.patch
bloba4902ff52f55d0850219dea3ae8beb354f18286c
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
9 @@ -12,7 +12,7 @@
10 if cc.get_id() == 'msvc'
11 python_cmd = '/usr/bin/env ' + python.path()
12 else
13 - python_cmd = '/usr/bin/env python@0@'.format(python.language_version().split('.')[0])
14 + python_cmd = python.path()
15 endif
17 tool_output = []