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.
1 parent bdddb11 commit 8c9d99fCopy full SHA for 8c9d99f
1 file changed
PCbuild/prepare_ssl.py
@@ -18,6 +18,8 @@
18
# it should configure OpenSSL such that it is ready to be built by
19
# ssl.vcxproj on 32 or 64 bit platforms.
20
21
+from __future__ import print_function
22
+
23
import os
24
import re
25
import sys
@@ -89,7 +91,10 @@ def create_asms(makefile, tmp_d):
89
91
90
92
def copy_includes(makefile, suffix):
93
dir = 'include'+suffix+'\\openssl'
- os.makedirs(dir, exist_ok=True)
94
+ try:
95
+ os.makedirs(dir)
96
+ except OSError:
97
+ pass
98
copy_if_different = r'$(PERL) $(SRC_D)\util\copy-if-different.pl'
99
with open(makefile) as fin:
100
for line in fin:
0 commit comments