blob: 1bff197b0c615956e70c4e57d359d1b63c8c7229 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# on i486 we need libglvnd for libepoxy (mesa doesn't depend on it?)
if [ "$CARCH" = 'i486' ]; then
depends+=(libglvnd)
fi
# ignore failing test for now on i486 (we disabled to much in mesa most likely)
if [ "$CARCH" = 'i486' ]; then
eval "$(
declare -f check | \
sed '
s/\(.*meson test.*\)/\1 || true/
'
)"
fi
|