summaryrefslogtreecommitdiffstats
path: root/PC/launcher.c
diff options
context:
space:
mode:
authorStefan Grönke <stefan@gronke.org>2017-09-25 16:58:10 (GMT)
committerPaul Moore <p.f.moore@gmail.com>2017-09-25 16:58:10 (GMT)
commitf1502d097c29b266a5748312ee2451a2d6ac0af6 (patch)
treeb799565b97317d802a3e828f3341482ee2d8351c /PC/launcher.c
parent8110dbd470f3daa4de58dda66d360e3c26d3b94f (diff)
downloadcpython-f1502d097c29b266a5748312ee2451a2d6ac0af6.zip
cpython-f1502d097c29b266a5748312ee2451a2d6ac0af6.tar.gz
cpython-f1502d097c29b266a5748312ee2451a2d6ac0af6.tar.bz2
bpo-31569: correct PCBuild/ case to PCbuild/ in build scripts and docs (GH-3711)
Diffstat (limited to 'PC/launcher.c')
-rw-r--r--PC/launcher.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/PC/launcher.c b/PC/launcher.c
index 0733df7..d717a7e 100644
--- a/PC/launcher.c
+++ b/PC/launcher.c
@@ -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
};