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

Ned Deily webhook-mailer at python.org
Sat Feb 24 14:30:47 EST 2018


https://github.com/python/cpython/commit/acd7163c0a0674b2fb6cc0178d52cf90c953fbae
commit: acd7163c0a0674b2fb6cc0178d52cf90c953fbae
branch: master
author: Ned Deily <nad at python.org>
committer: GitHub <noreply at github.com>
date: 2018-02-24T14:30:44-05:00
summary:

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

files:
M Mac/BuildScript/build-installer.py

diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index 1a7080c18f1b..bacdbfb0feba 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -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()
 



More information about the Python-checkins mailing list