Skip to content

Commit

Permalink
[3.7] bpo-32931: fix macOS 10.9+ installer c++ compiler name (GH-5856)
Browse files Browse the repository at this point in the history
(cherry picked from commit acd7163)

Co-authored-by: Ned Deily <nad@python.org>
  • Loading branch information
miss-islington and ned-deily committed Feb 24, 2018
1 parent e49bf0f commit d24c5a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mac/BuildScript/build-installer.py
Expand Up @@ -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()

Expand Down

0 comments on commit d24c5a0

Please sign in to comment.