mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
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.
This commit is contained in:
parent
3257d49d23
commit
50ec3453c5
3 changed files with 3 additions and 2 deletions
|
@ -1112,7 +1112,7 @@ if test ! -d CaseSensitiveTestDir; then
|
|||
mkdir CaseSensitiveTestDir
|
||||
fi
|
||||
|
||||
if test -d casesensitivetestdir
|
||||
if test -d casesensitivetestdir && test -z "$EXEEXT"
|
||||
then
|
||||
AC_MSG_RESULT(yes)
|
||||
BUILDEXEEXT=.exe
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue