From: Patrick McLean Date: Fri, 15 Sep 2017 17:44:38 +0000 (-0700) Subject: dev-util/herdtools7: Make sure to die properly if build fails, update ocaml dep X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=fdbd8bef321b0affd852dfb1cd3d25a96318872d;p=gentoo.git dev-util/herdtools7: Make sure to die properly if build fails, update ocaml dep Package-Manager: Portage-2.3.8, Repoman-2.3.3 --- diff --git a/dev-util/herdtools7/herdtools7-7.47.ebuild b/dev-util/herdtools7/herdtools7-7.47.ebuild index f4e8a84c5b07..fbd02aff8ec1 100644 --- a/dev-util/herdtools7/herdtools7-7.47.ebuild +++ b/dev-util/herdtools7/herdtools7-7.47.ebuild @@ -15,16 +15,16 @@ KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="dev-ml/ocamlbuild" -RDEPEND=">=dev-lang/ocaml-4.01.0" +RDEPEND=">=dev-lang/ocaml-4.02.0" PATCHES=( "${FILESDIR}/${P}-mkdir.patch" ) src_compile() { - ./build.sh /usr + ./build.sh /usr || die "Build failed" } src_install() { - ./install.sh "${ED}/usr" + ./install.sh "${ED}/usr" || die "Install failed" }