bpo-31569: correct PCBuild/ case to PCbuild/ in build scripts and docs (GH-3711)

This commit is contained in:
Stefan Grönke 2017-09-25 18:58:10 +02:00 committed by Paul Moore
parent 8110dbd470
commit f1502d097c
22 changed files with 44 additions and 43 deletions

View file

@ -169,11 +169,11 @@ static size_t num_installed_pythons = 0;
static wchar_t * location_checks[] = {
L"\\",
L"\\PCBuild\\win32\\",
L"\\PCBuild\\amd64\\",
L"\\PCbuild\\win32\\",
L"\\PCbuild\\amd64\\",
/* To support early 32bit versions of Python that stuck the build binaries
* directly in PCBuild... */
L"\\PCBuild\\",
* directly in PCbuild... */
L"\\PCbuild\\",
NULL
};