From 407eaa3b4ac4d4bcbe5a30cae19424ce4126c5f3 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Thu, 30 Jun 2022 14:05:49 +0100 Subject: [PATCH] gnome module: Use --quiet to supress printing the link command line This removes one line of stderr output per GObject Introspection file processed, e.g. g-ir-scanner: link: gcc -o Fwupd-2.0 Fwupd-2.0.o -L. -Wl,-rpath... --- mesonbuild/modules/gnome.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index 425385b33..4744b5a8d 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -1150,6 +1150,7 @@ class GnomeModule(ExtensionModule): gir_inc_dirs: T.List[str] = [] scan_command: T.List[T.Union[str, build.Executable, 'ExternalProgram', 'OverrideProgram']] = [giscanner] + scan_command += ['--quiet'] scan_command += ['--no-libtool'] scan_command += ['--namespace=' + ns, '--nsversion=' + nsversion] scan_command += ['--warn-all']