diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-11-13 23:23:49 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-11-13 23:23:49 +0200 |
commit | 18c423db151a93bbc0cc02183f27a1bd67447176 (patch) | |
tree | 9af35e15cda16b94e923f565ede29b6fc5967c55 /modules/gnome.py | |
parent | c04e04146e6a72db58c9f5c4a669e72b1bb89357 (diff) | |
download | meson-18c423db151a93bbc0cc02183f27a1bd67447176.zip meson-18c423db151a93bbc0cc02183f27a1bd67447176.tar.gz meson-18c423db151a93bbc0cc02183f27a1bd67447176.tar.bz2 |
Fix gtkdoc. We had to disable the test but on the other hand we have gstreamer docs working.
Diffstat (limited to 'modules/gnome.py')
-rw-r--r-- | modules/gnome.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gnome.py b/modules/gnome.py index ad6d5e1..b7330d9 100644 --- a/modules/gnome.py +++ b/modules/gnome.py @@ -285,8 +285,8 @@ class GnomeModule: raise MesonException('html_args values must be strings.') except KeyError: return[] - if len(html_args) > 0: - return ['--htmlargs=' + '@@'.join(new_args)] + if len(new_args) > 0: + return [arg + '@@'.join(new_args)] return [] def gdbus_codegen(self, state, args, kwargs): |