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...
pull/10573/head
Richard Hughes 2 years ago committed by Eli Schwartz
parent 17936686d4
commit 407eaa3b4a
  1. 1
      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']

Loading…
Cancel
Save