diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2019-02-18 16:53:07 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2019-02-18 16:53:07 +0000 |
commit | cb21aed7dc128b260a945d30d52f890625ed3af7 (patch) | |
tree | f06203b9ec4a886977008baf3915ca33ca57fbae /meson.build | |
parent | 7ea556d034c63a293d0579d6553eb6d43ebbbfb5 (diff) |
meson: use new 'python' module instead of deprecated 'python3' one
https://github.com/mesonbuild/meson/pull/4169
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index b5cabc2..00fc9b5 100644 --- a/meson.build +++ b/meson.build @@ -48,7 +48,7 @@ subprojects = [ ['gst-python', { 'option': get_option('python') }], ] -python3 = import('python3').find_python() +python3 = import('python').find_installation() symlink = ''' import os |