aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2016-07-21 13:34:41 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2016-07-21 13:39:42 +0530
commite6c927d8ac8a53857bf928acc3886d61ebb323aa (patch)
treead5c742450ec1cf09fc6b81988a3cddf5a5e5d7a
parent88aafd363e3b63184b42d66b9307ec701670b529 (diff)
downloadmeson-e6c927d8ac8a53857bf928acc3886d61ebb323aa.zip
meson-e6c927d8ac8a53857bf928acc3886d61ebb323aa.tar.gz
meson-e6c927d8ac8a53857bf928acc3886d61ebb323aa.tar.bz2
gnome: Update RunTarget usage to new syntax
This was broken in 0733c0f9a1cd7a38e3a8f5c746e50967eeb9c9a5
-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 2c37655..a4663a3 100644
--- a/mesonbuild/modules/gnome.py
+++ b/mesonbuild/modules/gnome.py
@@ -290,7 +290,7 @@ class GnomeModule:
args += self.unpack_args('--htmlargs=', 'html_args', kwargs)
args += self.unpack_args('--scanargs=', 'scan_args', kwargs)
args += self.unpack_args('--fixxrefargs=', 'fixxref_args', kwargs)
- res = [build.RunTarget(targetname, command[0], command[1:] + args, state.subdir)]
+ res = [build.RunTarget(targetname, command[0], command[1:] + args, [], state.subdir)]
if kwargs.get('install', True):
res.append(build.InstallScript(command + args))
return res