From 398a42634f34afa1979d88ae1d8b38194e911c2d Mon Sep 17 00:00:00 2001 From: David Seifert Date: Wed, 11 Dec 2019 13:32:00 +0100 Subject: */*: [QA] Remove redundant `|| die` guards MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 Reviewed-by: Michał Górny Reviewed-by: Andreas K. Hüttel Signed-off-by: David Seifert --- dev-python/gst-python/gst-python-1.14.1-r1.ebuild | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'dev-python/gst-python') diff --git a/dev-python/gst-python/gst-python-1.14.1-r1.ebuild b/dev-python/gst-python/gst-python-1.14.1-r1.ebuild index 569085071b25..e3f7b6251a8d 100644 --- a/dev-python/gst-python/gst-python-1.14.1-r1.ebuild +++ b/dev-python/gst-python/gst-python-1.14.1-r1.ebuild @@ -40,18 +40,18 @@ src_compile() { # Python plugin support is of limited use (GIL gets in the way). If it's ever requested or needed, it should be a # separate python-single-r1 media-plugins/gst-plugins-python package that only builds the plugin directory. compile_gst() { - emake -C common || die "emake common failed" - emake -C gi || die "emake gi failed" - emake -C testsuite || die "emake testsuite failed" + emake -C common + emake -C gi + emake -C testsuite } python_foreach_impl run_in_build_dir compile_gst } src_install() { install_gst() { - emake DESTDIR="${D}" install -C common || die "emake install common failed" - emake DESTDIR="${D}" install -C gi || die "emake install gi failed" - emake DESTDIR="${D}" install -C testsuite || die "emake install testsuite failed" + emake DESTDIR="${D}" install -C common + emake DESTDIR="${D}" install -C gi + emake DESTDIR="${D}" install -C testsuite } python_foreach_impl run_in_build_dir install_gst prune_libtool_files --modules @@ -60,7 +60,7 @@ src_install() { src_test() { test_gst() { - emake check -C testsuite || die "emake check failed" + emake check -C testsuite } python_foreach_impl run_in_build_dir default } -- cgit v1.2.3