summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2022-03-02 22:23:59 (GMT)
committerGitHub <noreply@github.com>2022-03-02 22:23:59 (GMT)
commit50ec3453c50c490eca7e990103c79671bd08ab2e (patch)
tree9a032c120e99d9e5f02b9de21b6b641b0016007c /Misc
parent3257d49d236e5f3453fe9d2fd8338bcdfe9756b7 (diff)
downloadcpython-50ec3453c50c490eca7e990103c79671bd08ab2e.zip
cpython-50ec3453c50c490eca7e990103c79671bd08ab2e.tar.gz
cpython-50ec3453c50c490eca7e990103c79671bd08ab2e.tar.bz2
bpo-46860: Respect `--with-suffix` on case-insensitive file systems (GH-31593)
Previously, case-insensitive file systems were forced to use `.exe` as the file suffix no matter what `--with-suffix` was set to.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Build/2022-02-25-16-19-40.bpo-46860.jfciLG.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2022-02-25-16-19-40.bpo-46860.jfciLG.rst b/Misc/NEWS.d/next/Build/2022-02-25-16-19-40.bpo-46860.jfciLG.rst
new file mode 100644
index 0000000..7eab15d
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2022-02-25-16-19-40.bpo-46860.jfciLG.rst
@@ -0,0 +1 @@
+Respect `--with-suffix` when building on case-insensitive file systems.