From: Mark Kendall Date: Thu, 19 Apr 2012 18:32:39 +0000 (+0100) Subject: create-installer.bat: Don't try and use Visual C++ 2008. X-Git-Tag: upstream/2.2.0~1^2~29^2~3 X-Git-Url: https://git.piment-noir.org/?p=deb_libcec.git;a=commitdiff_plain;h=e315a188fb050fccaa1aec06d0f8516d3a288692 create-installer.bat: Don't try and use Visual C++ 2008. It doesn't work from the command line. We may additionally need to remove references to Visual C++ 2010. bugzid: 563 --- diff --git a/support/create-installer.bat b/support/create-installer.bat index d9f6a57..b4d1ca7 100644 --- a/support/create-installer.bat +++ b/support/create-installer.bat @@ -58,8 +58,6 @@ echo. Compiling cec-client (x86) rem Check for VC9 IF "%VS90COMNTOOLS%"=="" ( set COMPILER9="%ProgramFiles%\Microsoft Visual Studio 9.0\Common7\IDE\VCExpress.exe" -) ELSE IF EXIST "%VS90COMNTOOLS%\..\IDE\VCExpress.exe" ( - set COMPILER9="%VS90COMNTOOLS%\..\IDE\VCExpress.exe" ) ELSE IF EXIST "%VS90COMNTOOLS%\..\IDE\devenv.exe" ( set COMPILER9="%VS90COMNTOOLS%\..\IDE\devenv.exe" ) ELSE GOTO NOSDK9