summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <thibault.saunier@osg.samsung.com>2017-06-07 17:38:59 -0400
committerGeorge Kiagiadakis <george.kiagiadakis@collabora.com>2017-08-29 11:08:46 +0300
commit91c890b04eba9ff1f5cb0c081d96f2d6f36d1500 (patch)
treea595fe8809cd4b1611557bb53fe288a115c886b6
parentf8f507ed49f0e0c2d53ed815204562c0d26b6a38 (diff)
uninstalled: Do not concider not installed dynamic libs as possible plugins1.12
-rwxr-xr-xgst-uninstalled.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst-uninstalled.py b/gst-uninstalled.py
index b357838..ed6fb2a 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