uninstalled: Do not concider not installed dynamic libs as possible plugins

This commit is contained in:
Thibault Saunier 2017-06-07 17:38:59 -04:00
parent 4b29870a5d
commit e94d5163ac

View file

@ -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