diff options
author | wsoltys <wiso@no.way> | 2013-04-12 19:02:06 +0200 |
---|---|---|
committer | wsoltys <wiso@no.way> | 2013-04-12 19:02:06 +0200 |
commit | ce8efc8a71d2999539590766304e243d4530b0c0 (patch) | |
tree | 43827af5be3c4b6cd0621a173e8200ce6dbd42ae /project | |
parent | c01c97d9d141162f8221e8cdb6ec20b6b5fa1268 (diff) |
[WIN32] fixed buildsetup syntax error. The code looks absolute correct to me but windows didn't liked it somehow.
Diffstat (limited to 'project')
-rw-r--r-- | project/Win32BuildSetup/BuildSetup.bat | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/project/Win32BuildSetup/BuildSetup.bat b/project/Win32BuildSetup/BuildSetup.bat index 6e58f58d17..5088198622 100644 --- a/project/Win32BuildSetup/BuildSetup.bat +++ b/project/Win32BuildSetup/BuildSetup.bat @@ -73,14 +73,10 @@ IF %comp%==vs2010 ( ) ELSE IF EXIST "%VS100COMNTOOLS%..\IDE\VCExpress.exe" ( SET VS_EXE="%VS100COMNTOOLS%..\IDE\VCExpress.exe" ) - - IF NOT EXIST %VS_EXE% ( - SET DIETEXT="Visual Studio 2010 Express not installed" - goto DIE - ) -) ELSE ( - SET DIETEXT="Unsupported Compiler: %comp%" - GOTO DIE +) +IF NOT EXIST %VS_EXE% ( + SET DIETEXT="Visual Studio 2010 Express not installed" + goto DIE ) :: |