commit: 5afeef3f4c40b4e2e72970c89a9e6ca34980428e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 31 10:05:29 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jan 4 21:56:06 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5afeef3f
dev-lang/jimtcl: Add missing ||die
dev-lang/jimtcl/jimtcl-0.76.ebuild | 8 ++++----
dev-lang/jimtcl/jimtcl-9999.ebuild | 8 ++++----
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/dev-lang/jimtcl/jimtcl-0.76.ebuild
b/dev-lang/jimtcl/jimtcl-0.76.ebuild
index 166bf52e88b..0c046194691 100644
--- a/dev-lang/jimtcl/jimtcl-0.76.ebuild
+++ b/dev-lang/jimtcl/jimtcl-0.76.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 \
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 \