mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
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).
This commit is contained in:
parent
d106c2f8df
commit
dfc24cc612
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue