diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-12-09 09:54:16 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-12-09 13:00:42 -0800 |
commit | 21c3ee3ee751b99c270a4a524d4cee66b25453c0 (patch) | |
tree | 7d89ea83987e71f7347fc0b8f546af700c3a2975 /mesonbuild | |
parent | e37fd94654dfc69620f3ad79bbb375c0e38feee8 (diff) | |
download | meson-21c3ee3ee751b99c270a4a524d4cee66b25453c0.zip meson-21c3ee3ee751b99c270a4a524d4cee66b25453c0.tar.gz meson-21c3ee3ee751b99c270a4a524d4cee66b25453c0.tar.bz2 |
modules/gnome: fix genmarshall install_dir default
Which needs to be converted from None to an empty list
Diffstat (limited to 'mesonbuild')
-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 a91ed76..326f56b 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -1758,7 +1758,7 @@ class GnomeModule(ExtensionModule): cmd.append(f'--{k.replace("_", "-")}') install_header = kwargs['install_header'] - install_dir = kwargs['install_dir'] + install_dir: T.List[T.Union[str, bool]] = kwargs['install_dir'] or [] custom_kwargs: T.Dict[str, T.Any] = { |