gst-env: Handle installing python modules to dist-packages
authorThibault Saunier <tsaunier@igalia.com>
Fri, 27 Jan 2023 14:47:22 +0000 (11:47 -0300)
committerTim-Philipp Müller <tim@centricular.com>
Mon, 30 Jan 2023 23:36:28 +0000 (23:36 +0000)
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3848>

gst-env.py

index fb266ad..a1868c1 100755 (executable)
@@ -430,8 +430,13 @@ def get_subprocess_env(options, gst_version):
             # /usr/lib/site-packages/foo/bar.py , we will not add anything
             # to PYTHONPATH, but the current approach works with pygobject
             # and gst-python at least.
+            py_package = None
             if 'site-packages' in installpath_parts:
-                install_subpath = os.path.join(*installpath_parts[installpath_parts.index('site-packages') + 1:])
+                py_package = 'site-packages'
+            elif 'dist-packages' in installpath_parts:
+                py_package = 'dist-packages'
+            if  py_package:
+                install_subpath = os.path.join(*installpath_parts[installpath_parts.index(py_package) + 1:])
                 if path.endswith(install_subpath):
                     if os.path.commonprefix(["gi/overrides", install_subpath]):
                         overrides_dirs.add(os.path.dirname(path))