diff options
author | info@mobile-stream.com <info@mobile-stream.com> | 2018-11-13 21:03:05 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2018-11-26 13:25:03 +0000 |
commit | fc203ed3f2042671181358e55726f43a69bfee7b (patch) | |
tree | 20bd1cc49f3e7a6dd24c1f6b19918bfe0ca1b11f /main/orc | |
parent | 486421b6cc5806449259367b0ee2df6d10ea64ea (diff) | |
download | aports-fc203ed3f2042671181358e55726f43a69bfee7b.tar.bz2 aports-fc203ed3f2042671181358e55726f43a69bfee7b.tar.xz |
main/orc: disable tests on mips*
ORC generates MIPS DSP Module Rev2 code which is not supported by Alpine mips* definitions.
Keep pkgrel intact since other architectures are unaffected by this change.
Diffstat (limited to 'main/orc')
-rw-r--r-- | main/orc/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/orc/APKBUILD b/main/orc/APKBUILD index 807be59e8f..9259f9a467 100644 --- a/main/orc/APKBUILD +++ b/main/orc/APKBUILD @@ -15,7 +15,8 @@ builddir="$srcdir/$pkgname-$pkgver" case "$CARCH" in # FIXME: Test exec_opcodes_sys fails on armhf. - arm*) options="!check";; + # FIXME: MIPS DSP Module Rev2 is required for tests on mips*. + arm*|mips*) options="!check";; esac build() { |