diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-12-31 11:05:29 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-01-04 22:56:06 +0100 |
commit | 5afeef3f4c40b4e2e72970c89a9e6ca34980428e (patch) | |
tree | 42c264e8b9cdc942395d8f564db525c1435cf10c /dev-lang/jimtcl/jimtcl-9999.ebuild | |
parent | 398d7df6783c137e1021410de38a4379ca736c55 (diff) | |
download | gentoo-5afeef3f4c40b4e2e72970c89a9e6ca34980428e.tar.gz gentoo-5afeef3f4c40b4e2e72970c89a9e6ca34980428e.tar.xz |
dev-lang/jimtcl: Add missing ||die
Diffstat (limited to 'dev-lang/jimtcl/jimtcl-9999.ebuild')
-rw-r--r-- | dev-lang/jimtcl/jimtcl-9999.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev-lang/jimtcl/jimtcl-9999.ebuild b/dev-lang/jimtcl/jimtcl-9999.ebuild index c3f079c046f..64b38756f80 100644 --- a/dev-lang/jimtcl/jimtcl-9999.ebuild +++ b/dev-lang/jimtcl/jimtcl-9999.ebuild @@ -30,7 +30,7 @@ src_unpack() { git-2_src_unpack else default - cd "${WORKDIR}"/msteveb-jimtcl-* + cd "${WORKDIR}"/msteveb-jimtcl-* || die S=${PWD} fi } @@ -43,8 +43,8 @@ src_configure() { CCACHE=None econf --with-jim-shared if use static-libs ; then # The build does not support doing both simultaneously. - mkdir static-libs - cd static-libs + mkdir static-libs || die + cd static-libs || die CCACHE=None ECONF_SOURCE=${S} econf fi } @@ -59,7 +59,7 @@ src_compile() { src_install() { dobin jimsh use static-libs && dolib.a static-libs/libjim.a - ln -sf libjim.so.* libjim.so + ln -sf libjim.so.* libjim.so || die dolib.so libjim.so* insinto /usr/include doins jim.h jimautoconf.h jim-subcmd.h jim-signal.h \ |