From 8e0c3285f4d420145d258ae46db0c6c1ed1614ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 23 Mar 2019 19:21:31 +0000 Subject: [PATCH] g-i: pass --quiet to g-ir-scanner This suppresses the annoying 'g-ir-scanner: link: cc ..' output that we get even if everything works just fine. We still get g-ir-scanner warnings and compiler warnings if we pass this option. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index cec814746d..3933a77b5c 100644 --- a/meson.build +++ b/meson.build @@ -126,7 +126,7 @@ gir_init_section = [ '--add-init-section=' + \ 'g_setenv("GST_PLUGIN_SYSTEM_PATH_1_0", "", TRUE);' + \ 'g_setenv("GST_DEBUG", "0", TRUE);' + \ 'gst_init(NULL,NULL);' + \ - 'ges_init();' ] + 'ges_init();', '--quiet'] ges_c_args = ['-DHAVE_CONFIG_H', '-DG_LOG_DOMAIN="GES"'] plugins_install_dir = '@0@/gstreamer-1.0'.format(get_option('libdir'))