linux: Ship system dynamic libraries, closes #278.

This commit is contained in:
Cheng Zhao 2014-05-09 19:29:18 +08:00
parent 42c2f87217
commit d9e1861aff
2 changed files with 27 additions and 1 deletions

View file

@ -112,7 +112,7 @@ def safe_mkdir(path):
def execute(argv):
try:
subprocess.check_output(argv, stderr=subprocess.STDOUT)
return subprocess.check_output(argv, stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as e:
print e.output
raise e