blob: 7871df9f24a424c1658c20792b7ef8a82aa9370d (
plain)
1
2
3
4
5
6
7
8
9
10
|
# target adaption (no clue how this ever worked before!?)
eval "$(
declare -f build | \
sed '
s/x86_64-unknown-linux-gnu/i686-unknown-linux-gnu/g
'
)"
# rust 1.49 has refused to rebuild for now, using rust148 for now
makedepends=("${makedepends[@]/rust/rust148}")
|