From 186a4515176fc9f4014dbd21cfa776cd5af8286a Mon Sep 17 00:00:00 2001 From: David Seifert Date: Tue, 27 Dec 2022 17:30:22 +0100 Subject: xorg-3.eclass: remove useless || die on emake Signed-off-by: David Seifert Closes: https://github.com/gentoo/gentoo/pull/28787 Signed-off-by: David Seifert --- eclass/xorg-3.eclass | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'eclass') diff --git a/eclass/xorg-3.eclass b/eclass/xorg-3.eclass index 0d35c0a8ebf8..a63655e10ece 100644 --- a/eclass/xorg-3.eclass +++ b/eclass/xorg-3.eclass @@ -415,7 +415,7 @@ xorg-3_src_configure() { } multilib_src_compile() { - emake "$@" || die 'emake failed' + emake "$@" } # @FUNCTION: xorg-3_src_compile @@ -427,12 +427,12 @@ xorg-3_src_compile() { if [[ ${XORG_MULTILIB} == yes ]]; then multilib-minimal_src_compile "$@" else - emake "$@" || die 'emake failed' + emake "$@" fi } multilib_src_install() { - emake DESTDIR="${D}" "${install_args[@]}" "$@" install || die "emake install failed" + emake DESTDIR="${D}" "${install_args[@]}" "$@" install } # @FUNCTION: xorg-3_src_install @@ -446,7 +446,7 @@ xorg-3_src_install() { if [[ ${XORG_MULTILIB} == yes ]]; then multilib-minimal_src_install "$@" else - emake DESTDIR="${D}" "${install_args[@]}" "$@" install || die "emake install failed" + emake DESTDIR="${D}" "${install_args[@]}" "$@" install einstalldocs fi -- cgit v1.2.3-65-gdbad