diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2018-03-10 14:19:58 +0100 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2018-03-10 14:20:25 +0100 |
commit | c1c7b85c252fe0283debab8d215c9107ec444fd9 (patch) | |
tree | 85c3e60815b0702f261ad5d202f078e1a418ddc6 /community/ocaml/APKBUILD | |
parent | 038e244d1de38735118b697e32d81161042ba7ab (diff) | |
download | aports-c1c7b85c252fe0283debab8d215c9107ec444fd9.tar.bz2 aports-c1c7b85c252fe0283debab8d215c9107ec444fd9.tar.xz |
community/ocaml: fix check, but ignore test failures for now
Diffstat (limited to 'community/ocaml/APKBUILD')
-rw-r--r-- | community/ocaml/APKBUILD | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/community/ocaml/APKBUILD b/community/ocaml/APKBUILD index 89371e7a40..cdc9ad4e73 100644 --- a/community/ocaml/APKBUILD +++ b/community/ocaml/APKBUILD @@ -3,7 +3,7 @@ # Maintainer: Jakub Jirutka <jakub@jirutka.cz> pkgname=ocaml pkgver=4.06.1 -pkgrel=0 +pkgrel=1 pkgdesc="Main implementation of the Caml programming language" url="http://ocaml.org/" arch="all !x86 !armhf !s390x" @@ -43,8 +43,7 @@ check() { cd "$builddir" # FIXME: there seem to be some spurious failures, ignore until fixed. - make test || true - make -C testsuite report || true + make -C testsuite all || true } package() { |