diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-10-23 16:50:49 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-10-23 16:50:49 (GMT) |
commit | d28a8a994bbd41d4f0fa3f4b69508b06e7e96d06 (patch) | |
tree | 0798846d220f020042e949a559138423b4eea0e4 /Tools/msi/build.bat | |
parent | de6e800f45b292c6290359ddbe9f079de3e08663 (diff) | |
download | cpython-d28a8a994bbd41d4f0fa3f4b69508b06e7e96d06.zip cpython-d28a8a994bbd41d4f0fa3f4b69508b06e7e96d06.tar.gz cpython-d28a8a994bbd41d4f0fa3f4b69508b06e7e96d06.tar.bz2 |
Moves Windows installer externals onto SVN and updates the build process to grab them automatically.
Diffstat (limited to 'Tools/msi/build.bat')
-rw-r--r-- | Tools/msi/build.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/msi/build.bat b/Tools/msi/build.bat index 5f53a1b..b11579b 100644 --- a/Tools/msi/build.bat +++ b/Tools/msi/build.bat @@ -19,6 +19,8 @@ if "%~1" EQU "--pack" (set BUILDPACK=1) && shift && goto CheckOpts if not defined BUILDX86 if not defined BUILDX64 (set BUILDX86=1) && (set BUILDX64=1)
+call "%D%get_externals.bat"
+
call "%PCBUILD%env.bat" x86
if defined BUILDX86 (
@@ -48,12 +50,10 @@ if defined BUILDPACK ( )
if defined BUILDX86 (
- "%PCBUILD%win32\python.exe" "%D%get_wix.py"
msbuild %BUILD_CMD%
if errorlevel 1 goto :eof
)
if defined BUILDX64 (
- "%PCBUILD%amd64\python.exe" "%D%get_wix.py"
msbuild /p:Platform=x64 %BUILD_CMD%
if errorlevel 1 goto :eof
)
|