summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-04-13 15:53:11 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2015-04-13 15:53:11 (GMT)
commit7dfa094e78dd3bc6c996587d3ad966af0620d0ec (patch)
tree6c193549a8cb3fbcf8e8fc242ca5a18df9d02975
parentab792ac704c40e331b094a6816ba5a16072a39bd (diff)
parent52797d8526b14d66876819dcdc69b69f3f7fccd3 (diff)
downloadcpython-7dfa094e78dd3bc6c996587d3ad966af0620d0ec.zip
cpython-7dfa094e78dd3bc6c996587d3ad966af0620d0ec.tar.gz
cpython-7dfa094e78dd3bc6c996587d3ad966af0620d0ec.tar.bz2
Closes #18402: Merge with 3.4
-rw-r--r--PCbuild/prepare_ssl.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/PCbuild/prepare_ssl.py b/PCbuild/prepare_ssl.py
index 6894880..671e526 100644
--- a/PCbuild/prepare_ssl.py
+++ b/PCbuild/prepare_ssl.py
@@ -218,7 +218,11 @@ def main():
# 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,))