bpo-32931: fix macOS 10.9+ installer c++ compiler name (#5855)

This commit is contained in:
Ned Deily 2018-02-24 14:30:44 -05:00 committed by GitHub
parent 42c35d9c0c
commit acd7163c0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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()