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-filter/spamdyke/spamdyke-4.3.0.ebuild | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'mail-filter') diff --git a/mail-filter/spamdyke/spamdyke-4.3.0.ebuild b/mail-filter/spamdyke/spamdyke-4.3.0.ebuild index 24eabfe02920..14aae8f1ea05 100644 --- a/mail-filter/spamdyke/spamdyke-4.3.0.ebuild +++ b/mail-filter/spamdyke/spamdyke-4.3.0.ebuild @@ -41,25 +41,25 @@ src_prepare() { src_configure() { econf \ - $(use_enable ssl tls) || die "econf failed" + $(use_enable ssl tls) cd ../utils - econf || die "econf failed in utils" + econf } src_compile() { - emake CFLAGS="${CFLAGS}" || die "emake failed" + emake CFLAGS="${CFLAGS}" cd ../utils - emake CFLAGS="${CFLAGS}" || die "emake in utils died" + emake CFLAGS="${CFLAGS}" } src_install() { - dobin ${PN} || die "Installing ${PN} binary failed" + dobin ${PN} insinto /etc/${PN} - doins ${PN}.conf || die "Installing ${PN} configuration file failed" + doins ${PN}.conf dodir /var/tmp/${PN}/graylist fowners -R qmaild /var/tmp/${PN}/graylist cd ../utils - dobin domain2path || die "Installing domain2path binary failed" + dobin domain2path cd ../documentation dodoc {Changelog,INSTALL,UPGRADING}.txt dohtml FAQ.html \ -- cgit v1.2.3-65-gdbad