From: Tim-Philipp Müller Date: Mon, 8 Oct 2018 22:25:21 +0000 (+0100) Subject: meson: use 'python' module to find python instead of deprecated 'python3' one X-Git-Tag: 1.19.3~493^2~680 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6837a6145089dcc999a22196d61b1d690fbce678;p=platform%2Fupstream%2Fgstreamer.git meson: use 'python' module to find python instead of deprecated 'python3' one https://github.com/mesonbuild/meson/pull/4169 --- diff --git a/meson.build b/meson.build index 2a9f274c8c..68fe85aede 100644 --- a/meson.build +++ b/meson.build @@ -190,7 +190,7 @@ else: prefix, 'Lib', 'Python%d%d' % (version.major, version.minor), 'site-packages', 'gi', 'overrides')) ''' -python3 = import('python3').find_python() +python3 = import('python').find_installation() pygi_override_dir = get_option('pygi-overrides-dir') if pygi_override_dir == '' cres = run_command(python3, '-c', override_detector, get_option('prefix'))