Commit acd7163c authored by Ned Deily's avatar Ned Deily Committed by GitHub

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

parent 42c35d9c
...@@ -161,7 +161,7 @@ def getTargetCompilers(): ...@@ -161,7 +161,7 @@ def getTargetCompilers():
'10.5': ('gcc', 'g++'), '10.5': ('gcc', 'g++'),
'10.6': ('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() CC, CXX = getTargetCompilers()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment