Commit d603d084 authored by Giacomo Fiorin's avatar Giacomo Fiorin
Browse files

Fix typo, whitespace cleanup

parent 46c0be57
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ fp.close()
n_cpus = get_cpus()

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:
  txt = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True);
  print(txt.decode('UTF-8'))