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

Skip to content

Commit 52797d8

Browse files
committed
Merge heads
2 parents 12efbf5 + a3655ea commit 52797d8

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

PCbuild/build_ssl.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,11 @@ def main():
170170
make_flags = "-a"
171171
# perl should be on the path, but we also look in "\perl" and "c:\\perl"
172172
# as "well known" locations
173-
perls = find_all_on_path("perl.exe", ["\\perl\\bin", "C:\\perl\\bin"])
173+
perls = find_all_on_path("perl.exe", [r"\perl\bin",
174+
r"C:\perl\bin",
175+
r"\perl64\bin",
176+
r"C:\perl64\bin",
177+
])
174178
perl = find_working_perl(perls)
175179
if perl:
176180
print("Found a working perl at '%s'" % (perl,))

0 commit comments

Comments
 (0)