mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
gstreamer-full: fix empty -Dgst-full-plugins=
When this option was given empty, when for example we don't want any plugin in gstreamer full, the build process was failing because an empty plugin was created in gstinitstaticplugins.c. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/244>
This commit is contained in:
parent
cb74a24fbd
commit
23f4266bbd
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ if __name__ == "__main__":
|
||||||
plugins_declaration = []
|
plugins_declaration = []
|
||||||
plugins_registration = []
|
plugins_registration = []
|
||||||
|
|
||||||
if options.plugins is None:
|
if options.plugins is None or options.plugins.isspace():
|
||||||
plugins = []
|
plugins = []
|
||||||
else:
|
else:
|
||||||
plugins = options.plugins.split(';')
|
plugins = options.plugins.split(';')
|
||||||
|
|
Loading…
Reference in a new issue