diff options
| author | Xavier Claessens <xavier.claessens@collabora.com> | 2020-03-23 12:34:08 -0400 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-03-23 23:57:49 +0200 |
| commit | 326e9dcc514890cdc6ce7071291069171e312e87 (patch) | |
| tree | e9f91f782bd3618bbfa14362ccefb4d2042c5731 | |
| parent | 7924e5f9c20017a0ad7df6ee1cdb540d8a98dff7 (diff) | |
| download | meson-326e9dcc514890cdc6ce7071291069171e312e87.tar.gz | |
gtkdoc: Add missing permitted kwarg
The 'check' kwarg was added in Meson 0.52.0.
| -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 4ddde28f0..76916bb70 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -918,7 +918,7 @@ This will become a hard error in the future.''') 'fixxref_args', 'html_args', 'html_assets', 'content_files', 'mkdb_args', 'ignore_headers', 'include_directories', 'namespace', 'mode', 'expand_content_files', 'module_version', - 'c_args'}) + 'c_args', 'check'}) def gtkdoc(self, state, args, kwargs): if len(args) != 1: raise MesonException('Gtkdoc must have one positional argument.') |
