bootstrap: use tar -z on extract
Some tar(1) programs—such as NetBSD's—do not automatically decompress.
This commit is contained in:
parent
b53b853129
commit
90aa66bfc2
1 changed files with 1 additions and 1 deletions
|
|
@ -387,7 +387,7 @@ impl Step for Openssl {
|
|||
let dst = build.openssl_install_dir(target).unwrap();
|
||||
drop(fs::remove_dir_all(&obj));
|
||||
drop(fs::remove_dir_all(&dst));
|
||||
build.run(Command::new("tar").arg("xf").arg(&tarball).current_dir(&out));
|
||||
build.run(Command::new("tar").arg("zxf").arg(&tarball).current_dir(&out));
|
||||
|
||||
let mut configure = Command::new("perl");
|
||||
configure.arg(obj.join("Configure"));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue