diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2015-04-13 10:46:40 -0500 |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2015-04-13 10:46:40 -0500 |
commit | 9b26cbf75afe4b003228a6b02ee7b3e3b4337f0a (patch) | |
tree | 07204cd34568bfe73b3e98601823d5a77c7959d8 | |
parent | bc3333bb879cd203613a0b1e4e3f27f8cf4456be (diff) | |
download | cpython-9b26cbf75afe4b003228a6b02ee7b3e3b4337f0a.tar.gz |
Issue #18402: Also look for 64 bit Perl in build_ssl.py.
It's still not necessary to build, but may be useful to some.
-rw-r--r-- | PCbuild/build_ssl.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/PCbuild/build_ssl.py b/PCbuild/build_ssl.py index b6f0551b06..7aee715d7e 100644 --- a/PCbuild/build_ssl.py +++ b/PCbuild/build_ssl.py @@ -170,7 +170,11 @@ def main(): make_flags = "-a" # perl should be on the path, but we also look in "\perl" and "c:\\perl" # as "well known" locations - perls = find_all_on_path("perl.exe", ["\\perl\\bin", "C:\\perl\\bin"]) + perls = find_all_on_path("perl.exe", [r"\perl\bin", + r"C:\perl\bin", + r"\perl64\bin", + r"C:\perl64\bin", + ]) perl = find_working_perl(perls) if perl: print("Found a working perl at '%s'" % (perl,)) |