Commit 187a80be authored by Giacomo Fiorin's avatar Giacomo Fiorin
Browse files

Add forgotten decode() in Install.py

parent ee6cac82
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -126,9 +126,9 @@ fp.close()

print("Building lib%s.a ..." % lib)
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"]
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")
else: error("Build of lib/%s/lib%s.a was NOT successful" % (lib,lib))