diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2017-06-10 20:39:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-10 20:39:29 (GMT) |
commit | 964c261dc9a6a901f50d5596d88248bfc4251a55 (patch) | |
tree | 8fbcb674e2447f15128b085656320b28dfbcaded /PC | |
parent | 865ed9ea67cf0d8a8dead91f3eac527553d92284 (diff) | |
download | cpython-964c261dc9a6a901f50d5596d88248bfc4251a55.zip cpython-964c261dc9a6a901f50d5596d88248bfc4251a55.tar.gz cpython-964c261dc9a6a901f50d5596d88248bfc4251a55.tar.bz2 |
[3.6] bpo-27425: Be more explicit in .gitattributes (GH-840) (GH-2083)
Also updates checked-in line endings on some files
Diffstat (limited to 'PC')
-rw-r--r-- | PC/bdist_wininst/build.bat | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/PC/bdist_wininst/build.bat b/PC/bdist_wininst/build.bat index 25f565c..ee68567 100644 --- a/PC/bdist_wininst/build.bat +++ b/PC/bdist_wininst/build.bat @@ -1,22 +1,22 @@ -@echo off
-setlocal
-
-set D=%~dp0
-set PCBUILD=%~dp0..\..\PCBuild\
-
-
-echo Building Lib\distutils\command\wininst-xx.0.exe
-
-call "%PCBUILD%env.bat" x86
-if errorlevel 1 goto :eof
-
-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
-
-call "%PCBUILD%env.bat" x86_amd64
-if errorlevel 1 goto :eof
-
-msbuild "%D%bdist_wininst.vcxproj" "/p:SolutionDir=%PCBUILD%\" /p:Configuration=Release /p:Platform=x64
+@echo off +setlocal + +set D=%~dp0 +set PCBUILD=%~dp0..\..\PCBuild\ + + +echo Building Lib\distutils\command\wininst-xx.0.exe + +call "%PCBUILD%env.bat" x86 +if errorlevel 1 goto :eof + +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 + +call "%PCBUILD%env.bat" x86_amd64 +if errorlevel 1 goto :eof + +msbuild "%D%bdist_wininst.vcxproj" "/p:SolutionDir=%PCBUILD%\" /p:Configuration=Release /p:Platform=x64 |