diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-06-30 16:29:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-30 16:29:46 (GMT) |
commit | 8ee4e12cafc4ed1643010d824ccaa7987f3e3184 (patch) | |
tree | e46f4d4262364828bfefc41a8aaabcdcba8c6ebb /configure.ac | |
parent | b3d69ffeb3ca2476b1921d257bc082c363cc5231 (diff) | |
download | cpython-8ee4e12cafc4ed1643010d824ccaa7987f3e3184.zip cpython-8ee4e12cafc4ed1643010d824ccaa7987f3e3184.tar.gz cpython-8ee4e12cafc4ed1643010d824ccaa7987f3e3184.tar.bz2 |
gh-93491: Fix PEP 11 tier detection for FreeBSD (GH-94441)
(cherry picked from commit 67d208fbee119ed1bca0765a9aa779e31fea98b3)
Co-authored-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 76fc4e3..a12d143 100644 --- a/configure.ac +++ b/configure.ac @@ -1086,7 +1086,7 @@ AS_CASE([$host/$ac_cv_cc_name], [s390x-*-linux-gnu/gcc], [PY_SUPPORT_TIER=3], dnl Linux on 64bit s390x (big endian), glibc, gcc dnl [wasm32-unknown-emscripten/clang], [PY_SUPPORT_TIER=3], dnl WebAssembly Emscripten dnl [wasm32-unknown-wasi/clang], [PY_SUPPORT_TIER=3], dnl WebAssembly System Interface - [x86_64-*-freebsd/clang], [PY_SUPPORT_TIER=3], dnl FreeBSD on AMD64 + [x86_64-*-freebsd*/clang], [PY_SUPPORT_TIER=3], dnl FreeBSD on AMD64 [PY_SUPPORT_TIER=0] ) |