X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mailauth3.nine.ch (mailauth3.nine.ch [94.230.211.187]) by lists.alpinelinux.org (Postfix) with ESMTP id 7DE085C0023 for ; Thu, 23 Mar 2017 13:01:53 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by mailauth3.nine.ch (Postfix) with ESMTP id E361E12138F; Thu, 23 Mar 2017 14:01:52 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mailauth3.nine.ch X-Spam-Flag: NO X-Spam-Score: -0.999 X-Spam-Level: X-Spam-Status: No, score=-0.999 tagged_above=-999 required=5.6 tests=[ALL_TRUSTED=-1, HEADER_FROM_DIFFERENT_DOMAINS=0.001] autolearn=disabled Received: from mailauth3.nine.ch ([127.0.0.1]) by localhost (mailauth3.nine.ch [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Aor90KiYjKW7; Thu, 23 Mar 2017 14:01:19 +0100 (CET) Received: from vimes (174.180.4.85.dynamic.wline.res.cust.swisscom.ch [85.4.180.174]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: pf@1042.ch) by mailauth3.nine.ch (Postfix) with ESMTPSA; Thu, 23 Mar 2017 14:01:19 +0100 (CET) Received: by vimes (Postfix, from userid 1000) id 2FCA780252; Thu, 23 Mar 2017 14:01:19 +0100 (CET) From: Jean-Louis Fuchs To: alpine-aports@lists.alpinelinux.org Cc: Jean-Louis Fuchs Subject: [alpine-aports] [PATCH] testing/lablgtk: remove returns, has no check Date: Thu, 23 Mar 2017 14:01:17 +0100 Message-Id: <20170323130117.24750-1-ganwell@fangorn.ch> X-Mailer: git-send-email 2.11.1 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/lablgtk/APKBUILD | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/testing/lablgtk/APKBUILD b/testing/lablgtk/APKBUILD index b5782a47e4..a7d7a5d80a 100644 --- a/testing/lablgtk/APKBUILD +++ b/testing/lablgtk/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Jean-Louis Fuchs pkgname=lablgtk pkgver=2.18.5 -pkgrel=1 +pkgrel=2 pkgdesc="LablGtk - an OCaml interface to GTK+ 2.x" url="http://lablgtk.forge.ocamlcore.org/" # ocaml is not built for x86, armhf @@ -15,13 +15,15 @@ subpackages="$pkgname-doc $pkgname-dev" source="https://forge.ocamlcore.org/frs/download.php/1627/lablgtk-$pkgver.tar.gz" builddir="$srcdir/lablgtk-$pkgver" +options="!check" + build() { cd "$builddir" - ./configure --prefix=/usr || return 1 - make world || return 1 - make opt || return 1 - make doc || return 1 + ./configure --prefix=/usr + make world + make opt + make doc } doc() { @@ -34,7 +36,7 @@ doc() { package() { cd "$builddir" - make DESTDIR="$pkgdir" install || return 1 + make DESTDIR="$pkgdir" install rm -f "$pkgdir"/usr/lib/ocaml/ld.conf } -- 2.11.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---