| Index: pylib/gyp/generator/msvs.py
|
| ===================================================================
|
| --- pylib/gyp/generator/msvs.py (revision 1344)
|
| +++ pylib/gyp/generator/msvs.py (working copy)
|
| @@ -3021,7 +3021,8 @@
|
| commands.append(cmd)
|
| # Add the custom build action for one input file.
|
| description = ', and also '.join(descriptions)
|
| - command = ' && '.join(commands)
|
| + command = (
|
| + '\r\nif %errorlevel% neq 0 exit /b %errorlevel%\r\n'.join(commands))
|
| _AddMSBuildAction(spec,
|
| primary_input,
|
| inputs,
|
|
|