make_quickie: replace os.system w/ subprocess.call

This commit is contained in:
2018-01-26 12:53:42 +11:00
parent 9b96dd0f61
commit 19b1b45d71

View File

@@ -107,12 +107,12 @@ def main():
return
# execute
cmd = "make %s %s blender/fast" % (" ".join(args), " ".join(targets_new))
cmd = ["make"] + args + targets_new + ["blender/fast"]
print("cmake building with targets: %s" % " ".join(targets_new))
print("executing: %s" % cmd)
print("executing: %s" % " ".join(cmd))
import os
os.system(cmd)
import subprocess
subprocess.call(cmd)
if __name__ == "__main__":
main()