create-installer.bat: Don't try and use Visual C++ 2008.
authorMark Kendall <mkendall@mythtv.org>
Thu, 19 Apr 2012 18:32:39 +0000 (19:32 +0100)
committerMark Kendall <mkendall@mythtv.org>
Thu, 19 Apr 2012 18:32:39 +0000 (19:32 +0100)
It doesn't work from the command line. We may additionally need to
remove references to Visual C++ 2010.

bugzid: 563

support/create-installer.bat

index d9f6a579d3b3a20d8586250000f3633716b199f3..b4d1ca7100cfb744cd86b69b2483511e0386b0f2 100644 (file)
@@ -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