mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 03:31:05 +00:00
uninstalled: Do not concider not installed dynamic libs as possible plugins
This commit is contained in:
parent
4b29870a5d
commit
e94d5163ac
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue