mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
uninstalled: Make the regex to look for plugin paths more generic
We might end up with spurious paths but it is no big deal.
This commit is contained in:
parent
71cf22cc19
commit
60ff3d539b
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ def get_subprocess_env(options):
|
|||
|
||||
sharedlib_reg = re.compile(r'\.so|\.dylib|\.dll')
|
||||
typelib_reg = re.compile(r'.*\.typelib$')
|
||||
pluginpath_reg = re.compile(r'lib\w*' + os.path.normpath('/gstreamer-1.0/'))
|
||||
pluginpath_reg = re.compile(r'lib.*' + os.path.normpath('/gstreamer-1.0/'))
|
||||
|
||||
if os.name is 'nt':
|
||||
lib_path_envvar = 'PATH'
|
||||
|
|
Loading…
Reference in a new issue