commit: 4a9dd018ceeb312e0af9b6fcb11dfc23f44a3583
parent: 48d1a8ab9969c921b72e9cf357e2ce5a531eaf30
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Thu, 17 Jan 2019 04:09:32 +0100
net-dns/ldns-utils: Add missing || die after cd commands
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/net-dns/ldns-utils/ldns-utils-1.7.0-r1.ebuild b/net-dns/ldns-utils/ldns-utils-1.7.0-r1.ebuild
@@ -29,11 +29,11 @@ S=${WORKDIR}/${MY_P}
PATCHES=( "${FILESDIR}/${P}_libressl.patch" )
src_configure() {
- cd "${S}"/drill
+ cd "${S}"/drill || die
econf $(use_with ssl)
if use examples; then
- cd "${S}"/examples
+ cd "${S}"/examples || die
econf \
$(use_enable dane) \
$(use_enable ecdsa) \
@@ -51,12 +51,12 @@ src_compile() {
}
src_install() {
- cd "${S}"/drill
+ cd "${S}"/drill || die
emake DESTDIR="${D}" install
dodoc ChangeLog.22-nov-2005 README REGRESSIONS
if use examples; then
- cd "${S}"/examples
+ cd "${S}"/examples || die
emake DESTDIR="${D}" install
newdoc README README.examples
fi