From 60ff3d539be93668b89a578158e99ada09b5dc56 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Mon, 24 Apr 2017 15:58:07 -0300 Subject: [PATCH] uninstalled: Make the regex to look for plugin paths more generic We might end up with spurious paths but it is no big deal. --- gst-uninstalled.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-uninstalled.py b/gst-uninstalled.py index acd91b39c0..d5f82b7313 100755 --- a/gst-uninstalled.py +++ b/gst-uninstalled.py @@ -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'