build/python: do not use absolute path for tar

This commit is contained in:
Felix Hädicke 2015-11-30 22:55:46 +01:00 committed by Max Kellermann
parent ca46992d3e
commit e6d607fef3
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ def untar(tarball_path, parent_path, base, lazy=False):
pass
os.makedirs(parent_path, exist_ok=True)
try:
subprocess.check_call(['/bin/tar', 'xfC', tarball_path, parent_path])
subprocess.check_call(['tar', 'xfC', tarball_path, parent_path])
except FileNotFoundError:
import tarfile
tar = tarfile.open(tarball_path)