[Python-checkins] cpython (merge 3.4 -> default): Closes #18402: Merge with 3.4

zach.ware python-checkins at python.org
Mon Apr 13 17:53:27 CEST 2015


https://hg.python.org/cpython/rev/ef6c4712cc28
changeset:   95572:ef6c4712cc28
parent:      95567:c81dd9fe0d87
parent:      95571:4a10fb845f85
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Mon Apr 13 10:53:11 2015 -0500
summary:
  Closes #18402: Merge with 3.4

files:
  PCbuild/prepare_ssl.py |  6 +++++-
  1 files changed, 5 insertions(+), 1 deletions(-)


diff --git a/PCbuild/prepare_ssl.py b/PCbuild/prepare_ssl.py
--- a/PCbuild/prepare_ssl.py
+++ b/PCbuild/prepare_ssl.py
@@ -218,7 +218,11 @@
 
     # 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,))

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list