From 29f6724f3947f8e48caaa9d39456c33062c5c02f Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Thu, 9 Dec 2021 09:47:04 -0800 Subject: [PATCH] modules/gnome: set genmarshal extra_args default to list Which is what it should have been all along. --- 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 219457891..9f2eccff0 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)),