aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-05-09 21:04:19 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-05-09 21:04:19 +0530
commit7ca2b8caca240184ed64180a7b56d74639e68c78 (patch)
treee890960627b1e413767294177c734a44f552fe8f /mesonbuild
parent6485f04c165e3d1adf8ab8bc47d58b93a31a931c (diff)
downloadmeson-7ca2b8caca240184ed64180a7b56d74639e68c78.zip
meson-7ca2b8caca240184ed64180a7b56d74639e68c78.tar.gz
meson-7ca2b8caca240184ed64180a7b56d74639e68c78.tar.bz2
gtkdoc: Fix typo that made xml_files an array of arrays
Diffstat (limited to 'mesonbuild')
-rw-r--r--mesonbuild/modules/gnome.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py
index e553b4a..cb12eeb 100644
--- a/mesonbuild/modules/gnome.py
+++ b/mesonbuild/modules/gnome.py
@@ -881,7 +881,7 @@ This will become a hard error in the future.''')
if len(args) not in (1, 2):
raise MesonException('Gdbus_codegen takes at most two arguments, name and xml file.')
namebase = args[0]
- xml_files = [args[1:]]
+ xml_files = args[1:]
target_name = namebase + '-gdbus'
cmd = [self.interpreter.find_program_impl('gdbus-codegen')]
if 'interface_prefix' in kwargs: