From e6c927d8ac8a53857bf928acc3886d61ebb323aa Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Thu, 21 Jul 2016 13:34:41 +0530 Subject: gnome: Update RunTarget usage to new syntax This was broken in 0733c0f9a1cd7a38e3a8f5c746e50967eeb9c9a5 --- 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 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 -- cgit v1.1