diff options
author | David Seifert <soap@gentoo.org> | 2022-12-27 17:30:21 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-12-27 17:30:21 +0100 |
commit | edae430373bdd2574642baf195c36a21a43b3df2 (patch) | |
tree | baa5cfc68939edaf27b41f0398b1bb7d7f786a2a /eclass/qmail.eclass | |
parent | gnustep-base.eclass: remove useless || die on emake (diff) | |
download | gentoo-edae430373bdd2574642baf195c36a21a43b3df2.tar.gz gentoo-edae430373bdd2574642baf195c36a21a43b3df2.tar.bz2 gentoo-edae430373bdd2574642baf195c36a21a43b3df2.zip |
qmail.eclass: remove useless || die on emake
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass/qmail.eclass')
-rw-r--r-- | eclass/qmail.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/qmail.eclass b/eclass/qmail.eclass index ed53bca56fae..67069087376d 100644 --- a/eclass/qmail.eclass +++ b/eclass/qmail.eclass @@ -121,12 +121,12 @@ qmail_src_postunpack() { qmail_src_compile() { cd "${S}" - emake it man "$@" || die "make failed" + emake it man "$@" } qmail_spp_src_compile() { cd "${GENQMAIL_S}"/spp/ - emake || die "make spp failed" + emake } qmail_base_install() { |