diff options
author | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2017-10-30 20:33:50 +0000 |
---|---|---|
committer | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2017-10-30 20:33:51 +0000 |
commit | 252af4e43284827f324624bb68b4ab5f030e0259 (patch) | |
tree | 0d3edd9a6540c6a83943a463af818a382ba488f1 /testing/tcc | |
parent | 6258846403f406123b6cba380a1dd111b1f2a4ad (diff) | |
download | aports-252af4e43284827f324624bb68b4ab5f030e0259.tar.bz2 aports-252af4e43284827f324624bb68b4ab5f030e0259.tar.xz |
testing/tcc: disable build on ppc64le
tcc is currently not supported on ppc64le arch.
Configure fails with error: Unsupported CPU
Diffstat (limited to 'testing/tcc')
-rw-r--r-- | testing/tcc/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/tcc/APKBUILD b/testing/tcc/APKBUILD index bb9b0fbaf7..cffb5d15ee 100644 --- a/testing/tcc/APKBUILD +++ b/testing/tcc/APKBUILD @@ -7,13 +7,13 @@ _commit=fc0188ffbcf29f856caedee8cef07d88be01e439 pkgrel=0 pkgdesc="Tiny C Compiler" url="http://repo.or.cz/tinycc.git" -arch="all" +arch="all !ppc64le" license="LGPL2.1" makedepends="texinfo" options="!check" # test suite currently fails on the server source="$pkgname-$pkgver.tar.gz::http://repo.or.cz/tinycc.git/snapshot/$_commit.tar.gz" subpackages="$pkgname-doc" -builddir="$srcdir/tinycc-$(echo "$_commit" | cut -c 0-7)" +builddir="$srcdir/tinycc-fc0188f" build() { ./configure \ |