Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7dfa094

Browse files
committed
Closes #18402: Merge with 3.4
2 parents ab792ac + 52797d8 commit 7dfa094

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

PCbuild/prepare_ssl.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,11 @@ def main():
218218

219219
# perl should be on the path, but we also look in "\perl" and "c:\\perl"
220220
# as "well known" locations
221-
perls = find_all_on_path("perl.exe", ["\\perl\\bin", "C:\\perl\\bin"])
221+
perls = find_all_on_path("perl.exe", [r"\perl\bin",
222+
r"C:\perl\bin",
223+
r"\perl64\bin",
224+
r"C:\perl64\bin",
225+
])
222226
perl = find_working_perl(perls)
223227
if perl:
224228
print("Found a working perl at '%s'" % (perl,))

0 commit comments

Comments
 (0)