Update python-build

Adds -z to tar command to make OpenBSD's tar command not mistake the tarball as a cpio archive
This commit is contained in:
Wesley Wigham 2013-09-13 18:30:21 -04:00
parent 02a348b657
commit 2e0ca6127f

View File

@ -287,7 +287,7 @@ fetch_tarball() {
download_tarball "$package_url" "$package_filename" "$checksum"
}
{ if tar xvf "$package_filename"; then
{ if tar xzvf "$package_filename"; then
if [ -z "$KEEP_BUILD_PATH" ]; then
rm -f "$package_filename"
else