summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2018-11-04 20:08:34 +0000
committerChristoph Reiter <reiter.christoph@gmail.com>2018-11-04 20:08:34 +0000
commit927d0598b160a6c1dc9b1545ea4aaa1f74c9cc25 (patch)
treec31477756c3c4326f58f70a165419de4dcc263e1
parent4f0f1f46a0122f4089213cbb1cc60da470efac13 (diff)
parentc44d14040fc3a848299f000f559513d2e4f96340 (diff)
downloadgobject-introspection-927d0598b160a6c1dc9b1545ea4aaa1f74c9cc25.tar.gz
Merge branch 'gir-msvc-fix' into 'master'
meson: add back /usr/bin/env to the python-cmd. Fixes #237 Closes #237 See merge request GNOME/gobject-introspection!70
-rw-r--r--tools/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/meson.build b/tools/meson.build
index b45ce668..3d5c0044 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -10,7 +10,7 @@ if get_option('doctool')
endif
if cc.get_id() == 'msvc'
- python_cmd = python.get_variable('prefix') + '\\python.exe'
+ python_cmd = '/usr/bin/env ' + python.get_variable('prefix') + '\\python.exe'
else
python_cmd = '/usr/bin/env python@0@'.format(python.language_version().split('.')[0])
endif