From 80f870c4bbd3151ee88e39b9b8b5504817f84801 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 18 Mar 2017 19:41:49 +0000 Subject: [PATCH] gnome: fix genmarshal .c file generation The .c file shouldn't contain the header bits as well. --- mesonbuild/modules/gnome.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index 13ffabc7c..49270a0cc 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)