blob: 03004ef9367b4e75ab4e2c60258189259895433f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# The timer test is still flaky, so ignore the tests for now
# https://gitlab.gnome.org/GNOME/glib/-/issues/820#note_2076472
eval "$(
declare -f check | \
sed '
s/\(meson test.*\)/\1 || true/
'
)"
# Crappy hack to work around glib2-devel not being installed
eval "$(
declare -f package_glib2 | \
sed '3i depends+=(glib2-devel)'
)"
|