diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-12-09 09:47:04 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-12-09 13:00:42 -0800 |
commit | 29f6724f3947f8e48caaa9d39456c33062c5c02f (patch) | |
tree | 707b0b6fbe0971fe9c41c79a44edcd4e2c2e4f3e | |
parent | f45a21af1e8c23478e5e4a6ef0e3ca0068ab0e39 (diff) | |
download | meson-29f6724f3947f8e48caaa9d39456c33062c5c02f.zip meson-29f6724f3947f8e48caaa9d39456c33062c5c02f.tar.gz meson-29f6724f3947f8e48caaa9d39456c33062c5c02f.tar.bz2 |
modules/gnome: set genmarshal extra_args default to list
Which is what it should have been all along.
-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 2194578..9f2eccf 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -1726,7 +1726,7 @@ class GnomeModule(ExtensionModule): DEPEND_FILES_KW.evolve(since='0.61.0'), DEPENDS_KW.evolve(since='0.61.0'), INSTALL_KW.evolve(name='install_header'), - KwargInfo('extra_args', ContainerTypeInfo(list, str), listify=True), + KwargInfo('extra_args', ContainerTypeInfo(list, str), listify=True, default=[]), KwargInfo('install_dir', (str, NoneType)), KwargInfo('internal', (str, NoneType)), KwargInfo('nostdinc', (str, NoneType)), |