aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-11-18 22:19:16 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2018-11-19 21:05:28 +0200
commitcecbbfab0e3577190c26a5f77b9ce9653e0a4852 (patch)
tree9b4bb2eb0c773694898f8d7363eeff0dc857d684 /mesonbuild
parent0092a7d3f98b01afdffd3e4ede29d6b6e6bde96d (diff)
downloadmeson-cecbbfab0e3577190c26a5f77b9ce9653e0a4852.zip
meson-cecbbfab0e3577190c26a5f77b9ce9653e0a4852.tar.gz
meson-cecbbfab0e3577190c26a5f77b9ce9653e0a4852.tar.bz2
gnome.gtkdoc: Fix missing permitted `c_args` argument
Although `gtkdoc` function has support for `c_args` argument[0], it produces warning messages due to missing string in the permitted arguments list. [0] https://github.com/mesonbuild/meson/pull/4192
Diffstat (limited to 'mesonbuild')
-rw-r--r--mesonbuild/modules/gnome.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py
index 51d4ea9..bf49770 100644
--- a/mesonbuild/modules/gnome.py
+++ b/mesonbuild/modules/gnome.py
@@ -914,7 +914,8 @@ This will become a hard error in the future.''')
'install_dir', 'scan_args', 'scanobjs_args', 'gobject_typesfile',
'fixxref_args', 'html_args', 'html_assets', 'content_files',
'mkdb_args', 'ignore_headers', 'include_directories',
- 'namespace', 'mode', 'expand_content_files', 'module_version'})
+ 'namespace', 'mode', 'expand_content_files', 'module_version',
+ 'c_args'})
def gtkdoc(self, state, args, kwargs):
if len(args) != 1:
raise MesonException('Gtkdoc must have one positional argument.')