diff options
author | Cem Keylan <cem@ckyln.com> | 2020-02-03 01:45:53 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-02-03 01:45:53 +0300 |
commit | 988394be37e087fc0ab852cbcf745eb3bc225def (patch) | |
tree | b72f1095fbbc08c053ff5ca3f534437a798a9460 /extra/rust/build | |
parent | a2ef0fde3a13536a2b697ff3e830287d3ad5f914 (diff) | |
download | repository-988394be37e087fc0ab852cbcf745eb3bc225def.tar.gz |
rust: bump to 1.41.0
Diffstat (limited to 'extra/rust/build')
-rwxr-xr-x | extra/rust/build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extra/rust/build b/extra/rust/build index 674d1700..f918b150 100755 --- a/extra/rust/build +++ b/extra/rust/build @@ -5,15 +5,15 @@ # connection requirement per build further enabling checksums # and signature verification by KISS. { - cache_dir=build/cache/2019-11-07 + cache_dir=build/cache/2019-12-19 mkdir -p "$cache_dir" - for tarball in *.tar.gz\?no-extract; do + for tarball in *.tar.xz\?no-extract; do mv -f "$tarball" "$cache_dir/${tarball%%\?no-extract}" done } -patch -p1 < musl-libressl.patch +patch -p1 < musl.patch # 'rust' checksums files in 'vendor/', but we patch a few files. for vendor in libc openssl-sys; do |