Issue #18402: Also look for 64 bit Perl in build_ssl.py.

It's still not necessary to build, but may be useful to some.
This commit is contained in:
Zachary Ware 2015-04-13 10:46:40 -05:00
parent 057b530024
commit a3655eaa39
1 changed files with 5 additions and 1 deletions

View File

@ -170,7 +170,11 @@ def main():
make_flags = "-a" make_flags = "-a"
# perl should be on the path, but we also look in "\perl" and "c:\\perl" # perl should be on the path, but we also look in "\perl" and "c:\\perl"
# as "well known" locations # 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) perl = find_working_perl(perls)
if perl: if perl:
print("Found a working perl at '%s'" % (perl,)) print("Found a working perl at '%s'" % (perl,))