diff options
author | David Seifert <soap@gentoo.org> | 2022-12-27 17:30:22 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-12-27 17:30:22 +0100 |
commit | 186a4515176fc9f4014dbd21cfa776cd5af8286a (patch) | |
tree | 44db8cb1a3cde6ebdeef1d68a7463cebdeda4a22 /eclass/xorg-3.eclass | |
parent | qmail.eclass: remove useless || die on emake (diff) | |
download | gentoo-186a4515176fc9f4014dbd21cfa776cd5af8286a.tar.gz gentoo-186a4515176fc9f4014dbd21cfa776cd5af8286a.tar.bz2 gentoo-186a4515176fc9f4014dbd21cfa776cd5af8286a.zip |
xorg-3.eclass: remove useless || die on emake
Signed-off-by: David Seifert <soap@gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/28787
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass/xorg-3.eclass')
-rw-r--r-- | eclass/xorg-3.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
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 |