diff options
Diffstat (limited to 'winbuild/makedebug.cmd')
-rw-r--r-- | winbuild/makedebug.cmd | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/winbuild/makedebug.cmd b/winbuild/makedebug.cmd index 899b744d7..9b59284c6 100644 --- a/winbuild/makedebug.cmd +++ b/winbuild/makedebug.cmd @@ -24,10 +24,11 @@ rem *************************************************************************** where.exe nmake.exe >nul 2>&1 IF %ERRORLEVEL% == 1 ( - ECHO Error: Can't find `nmake.exe` - be sure to run this script from within a Developer Command-Prompt - ECHO. + ECHO Error: Can't find `nmake.exe` - be sure to run this script from within a Developer Command-Prompt + ECHO. ) ELSE ( - nmake /f Makefile.vc mode=static DEBUG=yes GEN_PDB=yes - IF %ERRORLEVEL% NEQ 0 (ECHO "Error: Build Failed") + nmake /f Makefile.vc mode=static DEBUG=yes GEN_PDB=yes + IF %ERRORLEVEL% NEQ 0 ( + ECHO "Error: Build Failed" + ) ) - |