diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2017-03-18 19:41:49 +0000 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-03-20 19:19:12 -0400 |
commit | 80f870c4bbd3151ee88e39b9b8b5504817f84801 (patch) | |
tree | 7d4a71615685186c667c7211a954e7ac5b96d974 /mesonbuild/modules/gnome.py | |
parent | ed437d6d2e9c2b4dfe861c2c8260dc9748418571 (diff) | |
download | meson-80f870c4bbd3151ee88e39b9b8b5504817f84801.zip meson-80f870c4bbd3151ee88e39b9b8b5504817f84801.tar.gz meson-80f870c4bbd3151ee88e39b9b8b5504817f84801.tar.bz2 |
gnome: fix genmarshal .c file generation
The .c file shouldn't contain the header bits as well.
Diffstat (limited to 'mesonbuild/modules/gnome.py')
-rw-r--r-- | mesonbuild/modules/gnome.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index 13ffabc..49270a0 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -927,7 +927,7 @@ class GnomeModule(ExtensionModule): if arg in kwargs: custom_kwargs[arg] = kwargs[arg] - custom_kwargs['command'] = cmd + ['--header', '--body', '@INPUT@'] + custom_kwargs['command'] = cmd + ['--body', '@INPUT@'] custom_kwargs['output'] = output + '.c' body = build.CustomTarget(output + '_c', state.subdir, custom_kwargs) |