From 43f7a750604d1293c4152976c6fc0315270572e6 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Wed, 11 Jul 2018 16:48:43 +0530 Subject: gnome.gdbus_codegen: Handle XML docbook in subdirs Closes https://github.com/mesonbuild/meson/issues/3870 --- mesonbuild/modules/gnome.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/modules/gnome.py') diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index f3eabda..1459ffe 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -1017,7 +1017,7 @@ This will become a hard error in the future.''') output = namebase + '-docbook' outputs = [] for f in xml_files: - outputs.append('{}-{}'.format(docbook, f)) + outputs.append('{}-{}'.format(docbook, os.path.basename(str(f)))) if mesonlib.version_compare(glib_version, '>= 2.56.2'): custom_kwargs = {'input': xml_files, -- cgit v1.1