changeset 5868:a10e72af4dc5

Make windows build work even if Visual Studio is not installed (only the Windows SDK is required)
author Gilles Duboscq <duboscq@ssw.jku.at>
date Fri, 20 Jul 2012 01:54:56 +0200
parents 1cb45c7dba55
children 246d27834017
files mx/commands.py
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/mx/commands.py	Thu Jul 19 14:54:33 2012 +0200
+++ b/mx/commands.py	Fri Jul 20 01:54:56 2012 +0200
@@ -391,11 +391,11 @@
                 ret = True
         if line == ENDTOKEN:
             if not findInOutput:
-                stdin.write('echo ERR%errorlevel%' + newLine)
+                stdin.write('echo ERRXXX%errorlevel%' + newLine)
             else:
                 break
-        if line.startswith('ERR'):
-            if line == 'ERR0':
+        if line.startswith('ERRXXX'):
+            if line == 'ERRXXX0':
                 ret = True
             break;
     stdin.write('exit' + newLine)