blob: 3d825fe10e7ea3e75b0f3fc22b12bafde68e0d62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# ignore failing tests
eval "$(
declare -f check | \
sed '
s@make check@make check || true@
s@python setup.py test@python setup.py test || true@
'
)
"
# no LTO on i486
if [ "$CARCH" = 'i486' ]; then
sed -i '
1i options=(!lto)
' PKGBUILD
fi
|