Pass --quiet to glib-genmarshal

No need to spam about reading the input file.

Fixes: #13119
This commit is contained in:
Tristan Partin 2024-04-22 17:06:33 -05:00 committed by Jussi Pakkanen
parent be62df7fc7
commit 05e107832d
1 changed files with 1 additions and 1 deletions

View File

@ -1996,7 +1996,7 @@ class GnomeModule(ExtensionModule):
new_genmarshal = mesonlib.version_compare(self._get_native_glib_version(state), '>= 2.53.3')
cmd: T.List[T.Union['ToolType', str]] = [self._find_tool(state, 'glib-genmarshal')]
cmd: T.List[T.Union['ToolType', str]] = [self._find_tool(state, 'glib-genmarshal'), '--quiet']
if kwargs['prefix']:
cmd.extend(['--prefix', kwargs['prefix']])
if kwargs['extra_args']: