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...
This commit is contained in:
Richard Hughes 2022-06-30 14:05:49 +01:00 committed by Eli Schwartz
parent 17936686d4
commit 407eaa3b4a
1 changed files with 1 additions and 0 deletions

View File

@ -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']