From e94d5163ac90648a15ef8c734aca75b3924d596e Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Wed, 7 Jun 2017 17:38:59 -0400 Subject: [PATCH] uninstalled: Do not concider not installed dynamic libs as possible plugins --- gst-uninstalled.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gst-uninstalled.py b/gst-uninstalled.py index b35783831f..ed6fb2affe 100755 --- a/gst-uninstalled.py +++ b/gst-uninstalled.py @@ -70,7 +70,8 @@ def get_subprocess_env(options): elif sharedlib_reg.search(filename): if target.get('type') != "shared library": continue - if pluginpath_reg.search(os.path.normpath(target.get('install_filename'))): + + if target.get('installed') and pluginpath_reg.search(os.path.normpath(target.get('install_filename'))): prepend_env_var(env, "GST_PLUGIN_PATH", os.path.join(options.builddir, root)) continue