From 528fbe7b3c2433f2f22400c68e9119c925626cfc Mon Sep 17 00:00:00 2001 From: Dan Yeaw Date: Sat, 22 Jun 2024 14:38:06 -0400 Subject: [PATCH] gst-python: Fix python3 not found in Windows Part-of: --- subprojects/gst-python/meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-python/meson_options.txt b/subprojects/gst-python/meson_options.txt index 9759102928..0a48d75daf 100644 --- a/subprojects/gst-python/meson_options.txt +++ b/subprojects/gst-python/meson_options.txt @@ -2,6 +2,6 @@ option('pygi-overrides-dir', type : 'string', value : '', description: 'Path to pygobject overrides directory') option('libpython-dir', type : 'string', value : '', description: 'Path to find libpythonXX.so') -option('python', type : 'string', value : 'python3') +option('python', type : 'string') option('tests', type : 'feature', value : 'auto', yield : true) option('plugin', type : 'feature', value : 'auto')