[3.7] bpo-32931: fix macOS 10.9+ installer c++ compiler name (GH-5856)

(cherry picked from commit acd7163c0a)

Co-authored-by: Ned Deily <nad@python.org>
This commit is contained in:
Miss Islington (bot) 2018-02-24 11:59:25 -08:00 committed by Ned Deily
parent e49bf0f353
commit d24c5a068c
1 changed files with 1 additions and 1 deletions

View File

@ -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()