gplugin/gplugin

Parents 3e651648702b
Children a6105be9a7e2
Look for python3-embed and if we don't find it fallback python3. This fixes and issue with python3.8
--- a/python/meson.build Thu Oct 31 23:22:24 2019 -0500
+++ b/python/meson.build Thu Oct 31 23:22:48 2019 -0500
@@ -16,7 +16,10 @@
'gplugin-python-utils.h',
]
- PYTHON3 = dependency('python3')
+ PYTHON3 = dependency('python3-embed', required: false)
+ if not PYTHON3.found()
+ PYTHON3 = dependency('python3')
+ endif
PYGOBJECT = dependency('pygobject-3.0', version : '>=3.0.0')