diff --git a/main/icu/APKBUILD b/main/icu/APKBUILD index a70c2c40ce3..1af5dbc75e4 100644 --- a/main/icu/APKBUILD +++ b/main/icu/APKBUILD @@ -63,8 +63,10 @@ build() { } check() { - # armhf tests fail with gensprep: Bus error - [ "$CARCH" != armhf ] || return 0 + # tests seems to be x broken on 32bit + case "$CARCH" in + arm*|x86) return 0;; + esac cd "$builddir" make check }