diff options
author | Sam James <sam@gentoo.org> | 2022-03-11 15:39:00 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-11 16:16:21 +0000 |
commit | e948768be2d4398280dd3006c48b7d97e466f2be (patch) | |
tree | 4092d16f6b1a908cec36dbc9fed2fa2c1d16f43f /media-libs | |
parent | net-misc/memcached: clean up manifest (diff) | |
download | gentoo-e948768be2d4398280dd3006c48b7d97e466f2be.tar.gz gentoo-e948768be2d4398280dd3006c48b7d97e466f2be.tar.bz2 gentoo-e948768be2d4398280dd3006c48b7d97e466f2be.zip |
media-libs/libltc: drop unnecessary || die
eautoreconf is already fatal on errors, so this 'die' was unreachable.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libltc/libltc-1.3.1-r1.ebuild | 4 | ||||
-rw-r--r-- | media-libs/libltc/libltc-9999.ebuild | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/media-libs/libltc/libltc-1.3.1-r1.ebuild b/media-libs/libltc/libltc-1.3.1-r1.ebuild index 7ec6c8eaf9eb..5a4b897e7335 100644 --- a/media-libs/libltc/libltc-1.3.1-r1.ebuild +++ b/media-libs/libltc/libltc-1.3.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -19,7 +19,7 @@ RESTRICT="mirror" src_prepare() { default - [[ ${PV} == *9999 ]] && (eautoreconf || die) + [[ ${PV} == *9999 ]] && eautoreconf } src_install() { diff --git a/media-libs/libltc/libltc-9999.ebuild b/media-libs/libltc/libltc-9999.ebuild index 37f4e75a206e..3f002a9de5ae 100644 --- a/media-libs/libltc/libltc-9999.ebuild +++ b/media-libs/libltc/libltc-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -19,7 +19,7 @@ RESTRICT="mirror" src_prepare() { default - [[ ${PV} == *9999 ]] && (eautoreconf || die) + [[ ${PV} == *9999 ]] && eautoreconf } src_install() { |