Skip to content
Snippets Groups Projects
Commit 187a80be authored by Giacomo Fiorin's avatar Giacomo Fiorin
Browse files

Add forgotten decode() in Install.py

parent ee6cac82
No related branches found
No related tags found
No related merge requests found
...@@ -126,9 +126,9 @@ fp.close() ...@@ -126,9 +126,9 @@ fp.close()
print("Building lib%s.a ..." % lib) print("Building lib%s.a ..." % lib)
cmd = ["make -f Makefile.auto clean"] cmd = ["make -f Makefile.auto clean"]
print(subprocess.check_output(cmd, shell=True)) print(subprocess.check_output(cmd, shell=True).decode())
cmd = ["make -f Makefile.auto -j12"] cmd = ["make -f Makefile.auto -j12"]
print(subprocess.check_output(cmd, shell=True)) print(subprocess.check_output(cmd, shell=True).decode())
if os.path.exists("lib%s.a" % lib): print("Build was successful") if os.path.exists("lib%s.a" % lib): print("Build was successful")
else: error("Build of lib/%s/lib%s.a was NOT successful" % (lib,lib)) else: error("Build of lib/%s/lib%s.a was NOT successful" % (lib,lib))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment