From 2e0ca6127fdd45626863831c53fd51a65ace37dd Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Fri, 13 Sep 2013 18:30:21 -0400 Subject: [PATCH] Update python-build Adds -z to tar command to make OpenBSD's tar command not mistake the tarball as a cpio archive --- plugins/python-build/bin/python-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/python-build/bin/python-build b/plugins/python-build/bin/python-build index 196adc18..c04e1a94 100755 --- a/plugins/python-build/bin/python-build +++ b/plugins/python-build/bin/python-build @@ -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