From dfc24cc612bd6c2325ad6865392028fabc661192 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 25 Dec 2017 23:00:46 +0100 Subject: [PATCH] Fix check for python3 Use the python3 module to find the right binary. It might not be called 'python3', but could just be plain 'python' for example (e.g. on windows). --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 527eb9b292..998427b211 100644 --- a/meson.build +++ b/meson.build @@ -102,7 +102,7 @@ if not get_option('disable_gstreamer_sharp') endif endif -python3 = find_program('python3') +python3 = import('python3').find_python() symlink = ''' import os