summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2018-02-24 19:30:44 (GMT)
committerGitHub <noreply@github.com>2018-02-24 19:30:44 (GMT)
commitacd7163c0a0674b2fb6cc0178d52cf90c953fbae (patch)
treeb7ff50651114d4bfaad697bb79ae78796e261141 /Mac
parent42c35d9c0c8175332f50fbe034a001fe52f057b9 (diff)
downloadcpython-acd7163c0a0674b2fb6cc0178d52cf90c953fbae.zip
cpython-acd7163c0a0674b2fb6cc0178d52cf90c953fbae.tar.gz
cpython-acd7163c0a0674b2fb6cc0178d52cf90c953fbae.tar.bz2
bpo-32931: fix macOS 10.9+ installer c++ compiler name (#5855)
Diffstat (limited to 'Mac')
-rwxr-xr-xMac/BuildScript/build-installer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index 1a7080c..bacdbfb 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -161,7 +161,7 @@ def getTargetCompilers():
'10.5': ('gcc', 'g++'),
'10.6': ('gcc', 'g++'),
}
- return target_cc_map.get(DEPTARGET, ('gcc', 'gcc++') )
+ return target_cc_map.get(DEPTARGET, ('gcc', 'g++') )
CC, CXX = getTargetCompilers()