aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-04-18 13:26:09 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2018-04-18 21:15:52 +0300
commita52543cd1eb196da582191b8d89b397037c31301 (patch)
tree94471497824df114ca065a4f87aa7a376575ee6b
parent917fd9643588c1ca2655ad3314b907907c53f6c5 (diff)
downloadmeson-a52543cd1eb196da582191b8d89b397037c31301.zip
meson-a52543cd1eb196da582191b8d89b397037c31301.tar.gz
meson-a52543cd1eb196da582191b8d89b397037c31301.tar.bz2
gdbus_codegen: Fix install_dir parameter
The `install` parameter that is present in the `permittedKwargs` annotation is wrong. The correct parameter name, which is also consistent with the rest of functions in the `gnome` module, is `install_dir`.
-rw-r--r--mesonbuild/modules/gnome.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py
index 5455118..6d67472 100644
--- a/mesonbuild/modules/gnome.py
+++ b/mesonbuild/modules/gnome.py
@@ -869,7 +869,7 @@ This will become a hard error in the future.''')
return []
@permittedKwargs({'interface_prefix', 'namespace', 'object_manager', 'build_by_default',
- 'annotations', 'docbook', 'install', 'install_header'})
+ 'annotations', 'docbook', 'install_header', 'install_dir'})
def gdbus_codegen(self, state, args, kwargs):
if len(args) != 2:
raise MesonException('Gdbus_codegen takes two arguments, name and xml file.')