From 398a42634f34afa1979d88ae1d8b38194e911c2d Mon Sep 17 00:00:00 2001 From: David Seifert Date: Wed, 11 Dec 2019 13:32:00 +0100 Subject: */*: [QA] Remove redundant `|| die` guards MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Since all ebuilds in the tree are EAPI>=4, `|| die` on builtin commands is redundant and dead code. Closes: https://github.com/gentoo/gentoo/pull/13940 Reviewed-by: Ulrich Müller Reviewed-by: Michał Górny Reviewed-by: Andreas K. Hüttel Signed-off-by: David Seifert --- mail-client/mutt/mutt-1.12.2-r2.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mail-client/mutt/mutt-1.12.2-r2.ebuild') diff --git a/mail-client/mutt/mutt-1.12.2-r2.ebuild b/mail-client/mutt/mutt-1.12.2-r2.ebuild index 1300423d9a3d..77e569123721 100644 --- a/mail-client/mutt/mutt-1.12.2-r2.ebuild +++ b/mail-client/mutt/mutt-1.12.2-r2.ebuild @@ -205,11 +205,11 @@ src_configure() { myconf+=( "--with-homespool=Maildir" ) fi - econf "${myconf[@]}" || die "configure failed" + econf "${myconf[@]}" } src_install() { - emake DESTDIR="${D}" install || die "install failed" + emake DESTDIR="${D}" install if use mbox; then insinto /etc/mutt newins "${FILESDIR}"/Muttrc.mbox Muttrc @@ -224,7 +224,7 @@ src_install() { # A man-page is always handy, so fake one if use !doc; then - emake -C doc DESTDIR="${D}" muttrc.man || die + emake -C doc DESTDIR="${D}" muttrc.man # make the fake slightly better, bug #413405 sed -e 's#@docdir@/manual.txt#http://www.mutt.org/doc/devel/manual.html#' \ -e 's#in @docdir@,#at http://www.mutt.org/,#' \ -- cgit v1.2.3-65-gdbad