diff options
| author | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-07-21 13:34:41 +0530 |
|---|---|---|
| committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-07-21 13:39:42 +0530 |
| commit | e6c927d8ac8a53857bf928acc3886d61ebb323aa (patch) | |
| tree | ad5c742450ec1cf09fc6b81988a3cddf5a5e5d7a | |
| parent | 88aafd363e3b63184b42d66b9307ec701670b529 (diff) | |
| download | meson-e6c927d8ac8a53857bf928acc3886d61ebb323aa.tar.gz | |
gnome: Update RunTarget usage to new syntax
This was broken in 0733c0f9a1cd7a38e3a8f5c746e50967eeb9c9a5
| -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 2c3765503..a4663a3df 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 |
