diff options
author | Kevin Daudt <kdaudt@alpinelinux.org> | 2020-02-08 12:33:14 +0000 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2020-02-08 12:33:14 +0000 |
commit | 56208ae329b8980c22ca8f509dc36e77dce57ac0 (patch) | |
tree | 93292f1182c8631e2984af56d90148644afee9a0 | |
parent | 78f149fce85f565ffd6c350aa63f563cde9e089e (diff) | |
download | aports-56208ae329b8980c22ca8f509dc36e77dce57ac0.tar.bz2 aports-56208ae329b8980c22ca8f509dc36e77dce57ac0.tar.xz |
testing/broot: disable on x86
Latest version fails with:
```
note:
/usr/lib/gcc/i586-alpine-linux-musl/9.2.0/../../../../i586-alpine-linux-musl/bin/ld:
/tmp/rustclvHfVF/liblibgit2_sys-c1839c55229d18b6.rlib(refs.o): in function
`git_reference_normalize_name':
refs.c:(.text.git_reference_normalize_name+0xae): undefined reference to
`__stack_chk_fail_local'
```
(and more similar errors)
-rw-r--r-- | testing/broot/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/broot/APKBUILD b/testing/broot/APKBUILD index 6fe4b8540e..17966a1748 100644 --- a/testing/broot/APKBUILD +++ b/testing/broot/APKBUILD @@ -5,7 +5,7 @@ pkgver=0.13.0 pkgrel=0 pkgdesc="New way to see and navigate directory trees" url="https://github.com/Canop/broot" -arch="all !s390x" +arch="all !s390x !x86" license="MIT" makedepends="cargo" source="$pkgname-$pkgver.tar.gz::https://crates.io/api/v1/crates/broot/$pkgver/download" |