Chromium Code Reviews| Index: pylib/gyp/win_tool.py |
| =================================================================== |
| --- pylib/gyp/win_tool.py (revision 2008) |
| +++ pylib/gyp/win_tool.py (working copy) |
| @@ -116,7 +116,7 @@ |
| env = self._GetEnv(arch) |
| if use_separate_mspdbsrv == 'True': |
| self._UseSeparateMspdbsrv(env, args) |
| - link = subprocess.Popen(args, |
| + link = subprocess.Popen((args[0].replace('/', '\\'),) + args[1:], |
|
scottmg
2014/11/25 01:16:07
nit; i'd probably make it a list to avoid the trai
Nico
2014/11/25 01:19:01
You mean
[args[0].replace...0] + list(args[1:])
|
| shell=True, |
| env=env, |
| stdout=subprocess.PIPE, |