blob: 7f7cc8b6dbe39b25ab1aa12d5c04238a5bfbcbad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# remove dependency on sysprof
depends=(${depends[@]//sysprof/})
makedepends=(${makedepends[@]//sysprof/})
eval "$(
declare -f build | \
sed '
s@-D sysprof=enabled@-D sysprof=disabled@g
'
)"
# ignore failing tests
eval "$(
declare -f check | \
sed '
s@\(meson test.*\)@\1 || true@
'
)
"
|