From acd7163c0a0674b2fb6cc0178d52cf90c953fbae Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Sat, 24 Feb 2018 14:30:44 -0500 Subject: [PATCH] bpo-32931: fix macOS 10.9+ installer c++ compiler name (#5855) --- Mac/BuildScript/build-installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 1a7080c18f1..bacdbfb0feb 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()