Skip to content

Commit acd7163

Browse files
authoredFeb 24, 2018
bpo-32931: fix macOS 10.9+ installer c++ compiler name (python#5855)
1 parent 42c35d9 commit acd7163

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Mac/BuildScript/build-installer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def getTargetCompilers():
161161
'10.5': ('gcc', 'g++'),
162162
'10.6': ('gcc', 'g++'),
163163
}
164-
return target_cc_map.get(DEPTARGET, ('gcc', 'gcc++') )
164+
return target_cc_map.get(DEPTARGET, ('gcc', 'g++') )
165165

166166
CC, CXX = getTargetCompilers()
167167

0 commit comments

Comments
 (0)