diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2023-01-08 22:31:33 +0900 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-01-14 08:49:56 +0700 |
commit | 82271c5ab80720b65dd282db3b0b872c382b7cba (patch) | |
tree | b9583b64581df843b3c0f8848dac5915938d2298 /development/hhvm | |
parent | 6c0b73ba7ceb041172fca1ec386ae03ba3258e5f (diff) |
development/hhvm: Fix rust-nightly file names.
Looks like some copy and paste mistake was made here. This
was previously failing because no such file was downloaded.
I've adjusted the names of the file now.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/hhvm')
-rw-r--r-- | development/hhvm/hhvm.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/development/hhvm/hhvm.SlackBuild b/development/hhvm/hhvm.SlackBuild index 8075136a61b3..232f20111b74 100644 --- a/development/hhvm/hhvm.SlackBuild +++ b/development/hhvm/hhvm.SlackBuild @@ -94,9 +94,9 @@ tar zxvf $CWD/brotli-v1.0.9.tar.gz \ --strip-components=1 mkdir -p third-party/rustc/bundled_rust-prefix/src/bundled_rust -install -m 0644 -D $CWD/rustc-2021-11-29-rust-nightly-x86_64-unknown-linux-gnu.tar.gz \ - third-party/rustc/bundled_rust-prefix/src/rustc-2021-11-29-rust-nightly-x86_64-unknown-linux-gnu.tar.gz -tar zxvf $CWD/rustc-2021-11-29-rust-nightly-x86_64-unknown-linux-gnu.tar.gz \ +install -m 0644 -D $CWD/rust-nightly-x86_64-unknown-linux-gnu.tar.gz \ + third-party/rustc/bundled_rust-prefix/src/rust-nightly-x86_64-unknown-linux-gnu.tar.gz +tar zxvf $CWD/rust-nightly-x86_64-unknown-linux-gnu.tar.gz \ -C third-party/rustc/bundled_rust-prefix/src/bundled_rust \ --strip-components=1 |