From 4ab8a677dc0f6791c4a92d2cb2a38f4b133a391a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20H=C3=A4dicke?= Date: Mon, 30 Nov 2015 22:55:46 +0100 Subject: [PATCH] build/python: do not use absolute path for tar --- python/build/tar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/build/tar.py b/python/build/tar.py index e73ffdefa..8247d2c22 100644 --- a/python/build/tar.py +++ b/python/build/tar.py @@ -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)