From: Mark Andrews Date: Thu, 28 Jun 2007 04:53:53 +0000 (+0000) Subject: copy vcredist_x86.exe to the release/debug directories X-Git-Tag: v9.2.0b1^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=abb14a2c2b62dffe7ebfb2329ff63ed0d08ec3db;p=thirdparty%2Fbind9.git copy vcredist_x86.exe to the release/debug directories --- diff --git a/win32utils/BuildSetup.bat b/win32utils/BuildSetup.bat index edb03ef48d5..cfc1ea67a34 100644 --- a/win32utils/BuildSetup.bat +++ b/win32utils/BuildSetup.bat @@ -57,4 +57,31 @@ echo Copying the OpenSSL DLL. copy ..\..\openssl-0.9.8d\out32dll\libeay32.dll ..\Build\Release\ copy ..\..\openssl-0.9.8d\out32dll\libeay32.dll ..\Build\Debug +if Defined FrameworkSDKDir ( + +rem +rem vcredist_x86.exe path relative to FrameworkSDKDir +rem + +set vcredist=BootStrapper\Packages\vcredist_x86\vcredist_x86.exe + +if Exist "%FrameworkSDKDir%\%vcredist%" ( + +echo Copying Visual C x86 Redistributable Installer + +rem +rem Use /Y so we allways have the current version of the installer. +rem + +copy /Y "%FrameworkSDKDir%\%vcredist%" ..\Build\Release\ +copy /Y "%FrameworkSDKDir%\%vcredist%" ..\Build\Debug\ + +) else ( + echo "**** %FrameworkSDKDir%\%vcredist% not found ****" +) +) else ( + echo "**** Warning FrameworkSDKDir not defined ****" + echo "**** Run vsvars32.bat ****" +) + rem Done