summaryrefslogtreecommitdiff
path: root/PCbuild
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2016-09-05 12:54:08 -0500
committerZachary Ware <zachary.ware@gmail.com>2016-09-05 12:54:08 -0500
commit118eb656ab12c08f5ca24987b516c5b81dd003bf (patch)
treea5338ca24493ece5d155eb324cd843aeba166751 /PCbuild
parent91a9c78c43e29e6b946bfc0de4a96bb27d2d3303 (diff)
downloadcpython-git-118eb656ab12c08f5ca24987b516c5b81dd003bf.tar.gz
Issue #27407: Make PCbuild/prepare_ssl.py Python 2 compatible
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/prepare_ssl.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/PCbuild/prepare_ssl.py b/PCbuild/prepare_ssl.py
index f6170f5808..d74697660f 100644
--- a/PCbuild/prepare_ssl.py
+++ b/PCbuild/prepare_ssl.py
@@ -18,6 +18,8 @@
# it should configure OpenSSL such that it is ready to be built by
# ssl.vcxproj on 32 or 64 bit platforms.
+from __future__ import print_function
+
import os
import re
import sys
@@ -89,7 +91,10 @@ def create_asms(makefile, tmp_d):
def copy_includes(makefile, suffix):
dir = 'include'+suffix+'\\openssl'
- os.makedirs(dir, exist_ok=True)
+ try:
+ os.makedirs(dir)
+ except OSError:
+ pass
copy_if_different = r'$(PERL) $(SRC_D)\util\copy-if-different.pl'
with open(makefile) as fin:
for line in fin: