summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick McLean <chutzpah@gentoo.org>2017-09-15 10:44:38 -0700
committerPatrick McLean <chutzpah@gentoo.org>2017-09-15 10:44:57 -0700
commitfdbd8bef321b0affd852dfb1cd3d25a96318872d (patch)
treee4a8e039131af03adf192964500e66a6196ee3ee /dev-util/herdtools7
parentdev-util/herdtools7: New package, the Herd toolsuite to deal with .cat memory... (diff)
downloadgentoo-fdbd8bef321b0affd852dfb1cd3d25a96318872d.tar.gz
gentoo-fdbd8bef321b0affd852dfb1cd3d25a96318872d.tar.bz2
gentoo-fdbd8bef321b0affd852dfb1cd3d25a96318872d.zip
dev-util/herdtools7: Make sure to die properly if build fails, update ocaml dep
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'dev-util/herdtools7')
-rw-r--r--dev-util/herdtools7/herdtools7-7.47.ebuild6
1 files changed, 3 insertions, 3 deletions
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"
}