From cde3376666b5a125b6a9093268f39399d9566488 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Fri, 24 Nov 2017 12:45:29 +0530 Subject: meson: Explicitly use python3 for running g-ir-scanner Otherwise it won't run on Windows because it doesn't have a .py suffix and it isn't an executable. Meson should probably detect this case and automatically insert python3. --- gir/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/gir/meson.build b/gir/meson.build index e471b269..ff812846 100644 --- a/gir/meson.build +++ b/gir/meson.build @@ -38,6 +38,7 @@ girdir = join_paths(get_option('datadir'), 'gir-1.0') install_data(gir_files, install_dir: girdir) scanner_command = [ + python3, girscanner, '--output=@OUTPUT@', '--no-libtool', -- cgit v1.2.1