Fix typo, whitespace cleanup
This commit is contained in:
@ -122,9 +122,9 @@ fp.close()
|
|||||||
n_cpus = get_cpus()
|
n_cpus = get_cpus()
|
||||||
|
|
||||||
print("Building lib%s.a ..." % lib)
|
print("Building lib%s.a ..." % lib)
|
||||||
cmd = ["make -f Makefile.auto clearn; make -f Makefile.auto -j%d" % n_cpus]
|
cmd = ["make -f Makefile.auto clean; make -f Makefile.auto -j%d" % n_cpus]
|
||||||
try:
|
try:
|
||||||
txt = subprocess.check_output(cmd,stderr=subprocess.STDOUT,shell=True);
|
txt = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True);
|
||||||
print(txt.decode('UTF-8'))
|
print(txt.decode('UTF-8'))
|
||||||
except subprocess.CalledProcessError as e:
|
except subprocess.CalledProcessError as e:
|
||||||
print("Make failed with:\n %s" % e.output.decode('UTF-8'))
|
print("Make failed with:\n %s" % e.output.decode('UTF-8'))
|
||||||
|
|||||||
Reference in New Issue
Block a user