mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-18 04:05:34 +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):
|
elif sharedlib_reg.search(filename):
|
||||||
if target.get('type') != "shared library":
|
if target.get('type') != "shared library":
|
||||||
continue
|
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))
|
prepend_env_var(env, "GST_PLUGIN_PATH", os.path.join(options.builddir, root))
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue