summaryrefslogtreecommitdiff
path: root/Mac
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-02-24 11:59:25 -0800
committerNed Deily <nad@python.org>2018-02-24 14:59:25 -0500
commitd24c5a068c1831a8579a5915f44ae3b4344aba43 (patch)
tree6607bd822701a0ace8b8704192317d0f738562e3 /Mac
parente49bf0f353a968cddc4d8e6ea668b9d2d116e2ac (diff)
downloadcpython-git-d24c5a068c1831a8579a5915f44ae3b4344aba43.tar.gz
[3.7] bpo-32931: fix macOS 10.9+ installer c++ compiler name (GH-5856)
(cherry picked from commit acd7163c0a0674b2fb6cc0178d52cf90c953fbae) Co-authored-by: Ned Deily <nad@python.org>
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 1a7080c18f..bacdbfb0fe 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()