From 7e6a44388b832485722933627aebee2974269dd6 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Fri, 7 Jul 2017 17:07:31 +0530 Subject: [PATCH] meson: Set python3 before plugin subdir()s It's used by the msdk plugin --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index a1232c7..c14d6bf 100644 --- a/meson.build +++ b/meson.build @@ -403,6 +403,8 @@ vs_module_defs_dir = meson.current_source_dir() + '/win32/common/' # Used by the *_mkenum.py helper scripts glib_mkenums = find_program('glib-mkenums') +python3 = import('python3').find_python() + gir = find_program('g-ir-scanner', required : false) gnome = import('gnome') build_gir = gir.found() and not meson.is_cross_build() and not get_option('disable_introspection') @@ -418,5 +420,4 @@ subdir('ext') subdir('tests') subdir('pkgconfig') -python3 = import('python3').find_python() run_command(python3, '-c', 'import shutil; shutil.copy("hooks/pre-commit.hook", ".git/hooks/pre-commit")') -- 2.7.4