diff options
author | David Seifert <soap@gentoo.org> | 2022-12-27 17:30:20 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-12-27 17:30:20 +0100 |
commit | 768bbd299abd5cc1c1f17d620fdec8d380d32a5b (patch) | |
tree | 6cf50fb6f314ca5ee5a77900ac3a3e5312dd6f06 /eclass/gnustep-base.eclass | |
parent | gnome2.eclass: remove useless || die on emake (diff) | |
download | gentoo-768bbd299abd5cc1c1f17d620fdec8d380d32a5b.tar.gz gentoo-768bbd299abd5cc1c1f17d620fdec8d380d32a5b.tar.bz2 gentoo-768bbd299abd5cc1c1f17d620fdec8d380d32a5b.zip |
gnustep-base.eclass: remove useless || die on emake
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass/gnustep-base.eclass')
-rw-r--r-- | eclass/gnustep-base.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/gnustep-base.eclass b/eclass/gnustep-base.eclass index 5e839bd0702d..f967a527282a 100644 --- a/eclass/gnustep-base.eclass +++ b/eclass/gnustep-base.eclass @@ -172,7 +172,7 @@ egnustep_env() { # Make utilizing GNUstep Makefiles egnustep_make() { if [[ -f ./Makefile || -f ./makefile || -f ./GNUmakefile ]] ; then - emake ${*} "${GS_ENV[@]}" all || die "package make failed" + emake ${*} "${GS_ENV[@]}" all return 0 fi die "no Makefile found" @@ -185,7 +185,7 @@ egnustep_install() { mkdir -p "${D}"${GNUSTEP_SYSTEM_TOOLS} fi if [[ -f ./[mM]akefile || -f ./GNUmakefile ]] ; then - emake ${*} "${GS_ENV[@]}" install || die "package install failed" + emake ${*} "${GS_ENV[@]}" install return 0 fi die "no Makefile found" @@ -197,8 +197,8 @@ egnustep_doc() { # Check documentation presence pushd "${S}"/Documentation || die if [[ -f ./[mM]akefile || -f ./GNUmakefile ]] ; then - emake "${GS_ENV[@]}" all || die "doc make failed" - emake "${GS_ENV[@]}" install || die "doc install failed" + emake "${GS_ENV[@]}" all + emake "${GS_ENV[@]}" install fi popd || die fi |