# HG changeset patch # User Christian Wirth # Date 1365501268 -7200 # Node ID 6cae606d563f9869b1cc1fbd47c13067a2a51a64 # Parent cdd70fd1479bfc9ad3d046ab416ba3cb9181c27f commented out a check for the existence of "cl.exe" for the windows build. The command returns something invalid, so the build fails BECAUSE of this test diff -r cdd70fd1479b -r 6cae606d563f make/windows/create.bat --- a/make/windows/create.bat Tue Apr 09 10:48:14 2013 +0200 +++ b/make/windows/create.bat Tue Apr 09 11:54:28 2013 +0200 @@ -37,10 +37,14 @@ REM that "grep" be accessible on the PATH. An MKS install does this. REM -cl 2>NUL >NUL -if %errorlevel% == 0 goto nexttest -echo Make sure cl.exe is in your PATH before running this script. -goto end + + +REM (cwirth) does not return a proper error code, so build fails all the time +REM +REM cl 2>NUL >NUL +REM if %errorlevel% == 0 goto nexttest +REM echo Make sure cl.exe is in your PATH before running this script. +REM goto end :nexttest grep -V 2>NUL >NUL