diff options
author | David Seifert <soap@gentoo.org> | 2019-12-11 13:32:00 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-12-11 13:32:00 +0100 |
commit | 398a42634f34afa1979d88ae1d8b38194e911c2d (patch) | |
tree | d6a45bdf7b35b71c192602a46e8d98d12a88cb02 /app-mobilephone | |
parent | dev-ros/geometric_shapes: Remove old (diff) | |
download | gentoo-398a42634f34afa1979d88ae1d8b38194e911c2d.tar.gz gentoo-398a42634f34afa1979d88ae1d8b38194e911c2d.tar.bz2 gentoo-398a42634f34afa1979d88ae1d8b38194e911c2d.zip |
*/*: [QA] Remove redundant `|| die` guards
* 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 <ulm@gentoo.org>
Reviewed-by: Michał Górny <mgorny@gentoo.org>
Reviewed-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-mobilephone')
-rw-r--r-- | app-mobilephone/kannel-sqlbox/kannel-sqlbox-1.5.0-r1.ebuild | 9 | ||||
-rw-r--r-- | app-mobilephone/kannel/kannel-1.5.0-r3.ebuild | 4 | ||||
-rw-r--r-- | app-mobilephone/kannel/kannel-1.5.0-r4.ebuild | 4 |
3 files changed, 8 insertions, 9 deletions
diff --git a/app-mobilephone/kannel-sqlbox/kannel-sqlbox-1.5.0-r1.ebuild b/app-mobilephone/kannel-sqlbox/kannel-sqlbox-1.5.0-r1.ebuild index 06043457fe0c..02efd90850fc 100644 --- a/app-mobilephone/kannel-sqlbox/kannel-sqlbox-1.5.0-r1.ebuild +++ b/app-mobilephone/kannel-sqlbox/kannel-sqlbox-1.5.0-r1.ebuild @@ -49,16 +49,15 @@ src_configure() { --without-ctlib \ --without-mssql \ $(use_enable ssl) \ - $(use_enable doc docs) \ - || die "econf failed" + $(use_enable doc docs) } src_install() { - emake DESTDIR="${D}" install || die "failed emake install" + emake DESTDIR="${D}" install if use doc; then - emake doc/userguide.html || die "emake docs failed" - dohtml doc/userguide.html || die "userguide.html not found" + emake doc/userguide.html + dohtml doc/userguide.html fi newinitd "${FILESDIR}"/kannel-sqlbox.initd kannel-sqlbox diff --git a/app-mobilephone/kannel/kannel-1.5.0-r3.ebuild b/app-mobilephone/kannel/kannel-1.5.0-r3.ebuild index 174f609ce784..611d5ed24dc3 100644 --- a/app-mobilephone/kannel/kannel-1.5.0-r3.ebuild +++ b/app-mobilephone/kannel/kannel-1.5.0-r3.ebuild @@ -81,14 +81,14 @@ src_configure() { # phase disabled by RESTRICT # src_test() { -# emake check || die "emake check failed" +# emake check # } src_install() { default if use doc; then - emake -j1 DESTDIR="${D}" install-docs || die "emake install-docs failed" + emake -j1 DESTDIR="${D}" install-docs fi diropts -g kannel -m0750 diff --git a/app-mobilephone/kannel/kannel-1.5.0-r4.ebuild b/app-mobilephone/kannel/kannel-1.5.0-r4.ebuild index 0dc10f178c91..94543779012f 100644 --- a/app-mobilephone/kannel/kannel-1.5.0-r4.ebuild +++ b/app-mobilephone/kannel/kannel-1.5.0-r4.ebuild @@ -81,14 +81,14 @@ src_configure() { # phase disabled by RESTRICT # src_test() { -# emake check || die "emake check failed" +# emake check # } src_install() { default if use doc; then - emake -j1 DESTDIR="${D}" install-docs || die "emake install-docs failed" + emake -j1 DESTDIR="${D}" install-docs fi diropts -g kannel -m0750 |