blob: 530cd9f452a65268486c7361f7fff83b7ab137dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# patch architecture in helper shared libs
if [ "${CARCH}" = "pentium4" -o "${CARCH}" = "i686" ]; then
eval "$(
declare -f package_ruby | \
sed '
s|x86_64-linux|i686-linux|g
'
)"
fi
if [ "${CARCH}" = "i486" ]; then
eval "$(
declare -f package_ruby | \
sed '
s|x86_64-linux|i486-linux|g
'
)"
fi
# disable testing on i486, hopefully this disables also clangd-fuzzer
if [ "${CARCH}" = "i486" ]; then
unset check
fi
|