diff options
Diffstat (limited to 'mesonbuild/modules/gnome.py')
-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 ff4c681..5a744fe 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -1162,7 +1162,7 @@ class GnomeModule(ExtensionModule): modulename = args[0] if not isinstance(modulename, str): raise MesonException('Argument must be a string') - return ModuleReturnValue(os.path.join('share/gtk-doc/html', modulename), []) + return os.path.join('share/gtk-doc/html', modulename) @staticmethod def _unpack_args(arg, kwarg_name, kwargs, expend_file_state=None): |