| Index: pylib/gyp/msvs_emulation.py
|
| diff --git a/pylib/gyp/msvs_emulation.py b/pylib/gyp/msvs_emulation.py
|
| index 5d2d2e5584a4a88cf9a360ae668a8735b5dbaf9f..9b65e21dd837e6a7b820af428e391ac3e8097310 100644
|
| --- a/pylib/gyp/msvs_emulation.py
|
| +++ b/pylib/gyp/msvs_emulation.py
|
| @@ -59,7 +59,7 @@ def EncodeRspFileList(args):
|
| # to get quotes around the remainder (after 'call') since other generators
|
| # and gyp in general don't really support spaces in paths.
|
| if not args: return ''
|
| - program = args[0]
|
| + program = os.path.normpath(args[0])
|
| return program + ' ' + ' '.join(QuoteForRspFile(arg) for arg in args[1:])
|
|
|
|
|
|
|