diff options
Diffstat (limited to 'mesonbuild/modules/gnome.py')
-rw-r--r-- | mesonbuild/modules/gnome.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index be3c3ac..de202d8 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -61,6 +61,8 @@ class GnomeModule: cmd += ['--c-name', kwargs.pop('c_name')] cmd += ['--generate', '--target', '@OUTPUT@'] + cmd += mesonlib.stringlistify(kwargs.get('extra_args', [])) + kwargs['command'] = cmd kwargs['input'] = args[1] kwargs['output'] = args[0] + '.c' |