]> granicus.if.org Git - python/commitdiff
[3.7] bpo-32931: fix macOS 10.9+ installer c++ compiler name (GH-5856)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 24 Feb 2018 19:59:25 +0000 (11:59 -0800)
committerNed Deily <nad@python.org>
Sat, 24 Feb 2018 19:59:25 +0000 (14:59 -0500)
(cherry picked from commit acd7163c0a0674b2fb6cc0178d52cf90c953fbae)

Co-authored-by: Ned Deily <nad@python.org>
Mac/BuildScript/build-installer.py

index 1a7080c18f1b99326647fd0da4703e675680afda..bacdbfb0feba1b7fe3805e7160f255adf27301a9 100755 (executable)
@@ -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()