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 52e4a4c904
commit 4ab8a677dc
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 pass
os.makedirs(parent_path, exist_ok=True) os.makedirs(parent_path, exist_ok=True)
try: try:
subprocess.check_call(['/bin/tar', 'xfC', tarball_path, parent_path]) subprocess.check_call(['tar', 'xfC', tarball_path, parent_path])
except FileNotFoundError: except FileNotFoundError:
import tarfile import tarfile
tar = tarfile.open(tarball_path) tar = tarfile.open(tarball_path)