Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 12efbf5 + a3655ea commit 52797d8Copy full SHA for 52797d8
1 file changed
PCbuild/build_ssl.py
@@ -170,7 +170,11 @@ def main():
170
make_flags = "-a"
171
# perl should be on the path, but we also look in "\perl" and "c:\\perl"
172
# as "well known" locations
173
- perls = find_all_on_path("perl.exe", ["\\perl\\bin", "C:\\perl\\bin"])
+ 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
+ ])
178
perl = find_working_perl(perls)
179
if perl:
180
print("Found a working perl at '%s'" % (perl,))
0 commit comments