pypy: remove unnecessary tar option -z (#29380)

master
Maxim Belkin 2018-06-24 16:45:01 +00:00 committed by ilovezfs
parent 13d2a6eb2e
commit 24bd8a734c
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class Pypy < Formula
package_args = %w[--archive-name pypy --targetdir .]
package_args << "--without-gdbm" if build.without? "gdbm"
system python, "package.py", *package_args
system "tar", "-C", libexec.to_s, "--strip-components", "1", "-xzf", "pypy.tar.bz2"
system "tar", "-C", libexec.to_s, "--strip-components", "1", "-xf", "pypy.tar.bz2"
end
(libexec/"lib").install libexec/"bin/libpypy-c.dylib"