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 --- sys-libs/csu/csu-79.ebuild | 4 ++-- sys-libs/csu/csu-85.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'sys-libs/csu') diff --git a/sys-libs/csu/csu-79.ebuild b/sys-libs/csu/csu-79.ebuild index bd386e8f1cdc..465515a1d795 100644 --- a/sys-libs/csu/csu-79.ebuild +++ b/sys-libs/csu/csu-79.ebuild @@ -32,7 +32,7 @@ src_prepare() { } src_compile() { - emake USRLIBDIR="${EPREFIX}"/lib || die + emake USRLIBDIR="${EPREFIX}"/lib } src_install() { @@ -40,5 +40,5 @@ src_install() { USRLIBDIR="${EPREFIX}"/lib \ LOCLIBDIR="${EPREFIX}"/lib \ DSTROOT="${D}" \ - install || die + install } diff --git a/sys-libs/csu/csu-85.ebuild b/sys-libs/csu/csu-85.ebuild index 4e6c9fd1daf8..6d0fb053db7f 100644 --- a/sys-libs/csu/csu-85.ebuild +++ b/sys-libs/csu/csu-85.ebuild @@ -52,7 +52,7 @@ src_compile() { # so this isn't used, should they have gcc-apple installed, then # this wouldn't hurt either. type -P gcc-4.2.1 > /dev/null && export CC=gcc-4.2.1 - emake USRLIBDIR="${EPREFIX}"/lib || die + emake USRLIBDIR="${EPREFIX}"/lib } src_install() { @@ -60,5 +60,5 @@ src_install() { USRLIBDIR="${EPREFIX}"/lib \ LOCLIBDIR="${EPREFIX}"/lib \ DSTROOT="${D}" \ - install || die + install } -- cgit v1.2.3-65-gdbad