During updating rust to 1.65 I found that 'lfsmake2 rust' appeared
twice and removed the second - obsolete - call.
'rust-cipher' now requires 'rust-crypto-common', but was called later
in the build sequence.
=> Moved 'rust-crypto-common' just before 'rust-cipher'. [Thanks Adolf! ;-)]
Signed-off-by: Matthias Fischer <matthias.fischer(a)ipfire.org>
---
make.sh | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/make.sh b/make.sh
index 413d04491..e256e2755 100755
--- a/make.sh
+++ b/make.sh
@@ -1203,7 +1203,6 @@ buildipfire() {
lfsmake2 sqlite
lfsmake2 libffi
lfsmake2 python3
- lfsmake2 rust
lfsmake2 rust-dissimilar
lfsmake2 rust-cfg-if
lfsmake2 rust-libc
@@ -1211,6 +1210,7 @@ buildipfire() {
lfsmake2 rust-typenum
lfsmake2 rust-version-check
lfsmake2 rust-generic-array
+ lfsmake2 rust-crypto-common
lfsmake2 rust-cipher
lfsmake2 rust-hex
lfsmake2 rust-unicode-xid
@@ -1237,7 +1237,6 @@ buildipfire() {
lfsmake2 rust-serde_json
lfsmake2 rust-synstructure
lfsmake2 rust-block-buffer
- lfsmake2 rust-crypto-common
lfsmake2 rust-digest
lfsmake2 rust-ppv-lite86
lfsmake2 rust-rand_core
--
2.34.1