https://github.com/python/cpython
Revision d03b7757811ae51277f8ed399a9a0fd78dfd3425 authored by Tim Graham on 25 October 2018, 15:26:38 UTC, committed by Steve Dower on 25 October 2018, 15:26:37 UTC
Regression in b0bf51b32240369ccb736dc32ff82bb96f375402.
1 parent e25d5fc
Raw File
Tip revision: d03b7757811ae51277f8ed399a9a0fd78dfd3425 authored by Tim Graham on 25 October 2018, 15:26:38 UTC
bpo-31047: Fix ntpath.abspath to trim ending separator (GH-10082)
Tip revision: d03b775
build.bat
@echo off
setlocal

set D=%~dp0
set PCBUILD=%~dp0..\..\PCbuild\


echo Building Lib\distutils\command\wininst-xx.0.exe

call "%PCBUILD%find_msbuild.bat" %MSBUILD%
if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)

%MSBUILD% "%D%bdist_wininst.vcxproj" "/p:SolutionDir=%PCBUILD%\" /p:Configuration=Release /p:Platform=Win32
if errorlevel 1 goto :eof


echo Building Lib\distutils\command\wininst-xx.0-amd64.exe

%MSBUILD% "%D%bdist_wininst.vcxproj" "/p:SolutionDir=%PCBUILD%\" /p:Configuration=Release /p:Platform=x64
back to top