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:
parent
17936686d4
commit
407eaa3b4a
|
@ -1150,6 +1150,7 @@ class GnomeModule(ExtensionModule):
|
||||||
gir_inc_dirs: T.List[str] = []
|
gir_inc_dirs: T.List[str] = []
|
||||||
|
|
||||||
scan_command: T.List[T.Union[str, build.Executable, 'ExternalProgram', 'OverrideProgram']] = [giscanner]
|
scan_command: T.List[T.Union[str, build.Executable, 'ExternalProgram', 'OverrideProgram']] = [giscanner]
|
||||||
|
scan_command += ['--quiet']
|
||||||
scan_command += ['--no-libtool']
|
scan_command += ['--no-libtool']
|
||||||
scan_command += ['--namespace=' + ns, '--nsversion=' + nsversion]
|
scan_command += ['--namespace=' + ns, '--nsversion=' + nsversion]
|
||||||
scan_command += ['--warn-all']
|
scan_command += ['--warn-all']
|
||||||
|
|
Loading…
Reference in New Issue