SKALE-1955 Fix build.py for python3

parent 42227253
...@@ -141,14 +141,14 @@ assert subprocess.call(["cp", "sgx_tgmp.h", TGMP_BUILD_DIR + "/include/sgx_tgmp. ...@@ -141,14 +141,14 @@ assert subprocess.call(["cp", "sgx_tgmp.h", TGMP_BUILD_DIR + "/include/sgx_tgmp.
os.chdir(SSL_DIR); os.chdir(SSL_DIR);
print "===>>> Downloading vanilla openssl source package" print("===>>> Downloading vanilla openssl source package")
os.chdir(SSL_SOURCE_DIR); os.chdir(SSL_SOURCE_DIR);
assert subprocess.call(["wget", "https://www.openssl.org/source/openssl-1.1.1b.tar.gz"]) == 0 assert subprocess.call(["wget", "https://www.openssl.org/source/openssl-1.1.1b.tar.gz"]) == 0
print "===>>> Making SSL project" print("===>>> Making SSL project")
os.chdir(SSL_MAKE_DIR); os.chdir(SSL_MAKE_DIR);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment