aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/gnome.py
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2022-06-30 14:05:49 +0100
committerEli Schwartz <eschwartz93@gmail.com>2022-07-06 15:29:41 -0400
commit407eaa3b4ac4d4bcbe5a30cae19424ce4126c5f3 (patch)
treee33d215f76ac97cd8530017df6a1314a8ac14927 /mesonbuild/modules/gnome.py
parent17936686d473fe07b6a7cf1c3b80a21f220ce06e (diff)
downloadmeson-407eaa3b4ac4d4bcbe5a30cae19424ce4126c5f3.zip
meson-407eaa3b4ac4d4bcbe5a30cae19424ce4126c5f3.tar.gz
meson-407eaa3b4ac4d4bcbe5a30cae19424ce4126c5f3.tar.bz2
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...
Diffstat (limited to 'mesonbuild/modules/gnome.py')
-rw-r--r--mesonbuild/modules/gnome.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py
index 425385b..4744b5a 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']