diff options
author | Jonathan Protzenko <protz@microsoft.com> | 2023-05-08 16:52:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-08 16:52:11 (GMT) |
commit | 874010c6cab2e079069767619af2e0eab05ad0b2 (patch) | |
tree | 82ee98ecb165f4361cc9f242193233f38663cfcd /Modules/Setup | |
parent | 76eef552f3653179782afcc5063f10560a6e1a80 (diff) | |
download | cpython-874010c6cab2e079069767619af2e0eab05ad0b2.zip cpython-874010c6cab2e079069767619af2e0eab05ad0b2.tar.gz cpython-874010c6cab2e079069767619af2e0eab05ad0b2.tar.bz2 |
gh-99108: fix typo in Modules/Setup (#104293)
case sensitive filename
Diffstat (limited to 'Modules/Setup')
-rw-r--r-- | Modules/Setup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Setup b/Modules/Setup index e5bc078..312e99f 100644 --- a/Modules/Setup +++ b/Modules/Setup @@ -166,7 +166,7 @@ PYTHONPATH=$(COREPYTHONPATH) #_md5 md5module.c -I$(srcdir)/Modules/_hacl/include _hacl/Hacl_Hash_MD5.c -D_BSD_SOURCE -D_DEFAULT_SOURCE #_sha1 sha1module.c -I$(srcdir)/Modules/_hacl/include _hacl/Hacl_Hash_SHA1.c -D_BSD_SOURCE -D_DEFAULT_SOURCE #_sha2 sha2module.c -I$(srcdir)/Modules/_hacl/include Modules/_hacl/libHacl_Streaming_SHA2.a -#_sha3 sha3module.c -I$(srcdir)/Modules/_hacl/include _hacl/Hacl_Hash_sha3.c -D_BSD_SOURCE -D_DEFAULT_SOURCE +#_sha3 sha3module.c -I$(srcdir)/Modules/_hacl/include _hacl/Hacl_Hash_SHA3.c -D_BSD_SOURCE -D_DEFAULT_SOURCE # text encodings and unicode #_codecs_cn cjkcodecs/_codecs_cn.c |