summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2021-05-03 04:23:54 (GMT)
committerGitHub <noreply@github.com>2021-05-03 04:23:54 (GMT)
commitc3bfa762214e4fbe25699d75c0412791cefd7094 (patch)
tree4606a2238dfa232e69bb9e61c88eccd5a41f951d /Mac
parent4ae828f3c0e8548939161ef3b6154e9c3122d812 (diff)
downloadcpython-c3bfa762214e4fbe25699d75c0412791cefd7094.zip
cpython-c3bfa762214e4fbe25699d75c0412791cefd7094.tar.gz
cpython-c3bfa762214e4fbe25699d75c0412791cefd7094.tar.bz2
bpo-42362: use clang name on 10.9 builds as well (GH-25834)
Diffstat (limited to 'Mac')
-rwxr-xr-xMac/BuildScript/build-installer.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index ff62096..60174eb 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -163,7 +163,6 @@ def getTargetCompilers():
'10.6': ('gcc', 'g++'),
'10.7': ('gcc', 'g++'),
'10.8': ('gcc', 'g++'),
- '10.9': ('gcc', 'g++'),
}
return target_cc_map.get(DEPTARGET, ('clang', 'clang++') )