We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ab792ac + 52797d8 commit 7dfa094Copy full SHA for 7dfa094
1 file changed
PCbuild/prepare_ssl.py
@@ -218,7 +218,11 @@ def main():
218
219
# perl should be on the path, but we also look in "\perl" and "c:\\perl"
220
# as "well known" locations
221
- perls = find_all_on_path("perl.exe", ["\\perl\\bin", "C:\\perl\\bin"])
+ 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
+ ])
226
perl = find_working_perl(perls)
227
if perl:
228
print("Found a working perl at '%s'" % (perl,))
0 commit comments