summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-04-13 15:46:40 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2015-04-13 15:46:40 (GMT)
commit71d6ed73e619f8a1a11f5bb525c97aa1e2be65e5 (patch)
tree55d962cae3895077fc32a193903024ea1324462f /PCbuild
parent721c86ef367c0e05a73583375aeaf513e6b9dd57 (diff)
downloadcpython-71d6ed73e619f8a1a11f5bb525c97aa1e2be65e5.zip
cpython-71d6ed73e619f8a1a11f5bb525c97aa1e2be65e5.tar.gz
cpython-71d6ed73e619f8a1a11f5bb525c97aa1e2be65e5.tar.bz2
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.
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/build_ssl.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/PCbuild/build_ssl.py b/PCbuild/build_ssl.py
index 52daef0..dd8bb18 100644
--- a/PCbuild/build_ssl.py
+++ b/PCbuild/build_ssl.py
@@ -158,7 +158,11 @@ def main():
make_flags = "-a"
# perl should be on the path, but we also look in "\perl" and "c:\\perl"
# 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)
if perl:
print("Found a working perl at '%s'" % (perl,))