summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2021-12-06 19:53:26 -0500
committerIonen Wolkens <ionen@gentoo.org>2021-12-06 19:54:48 -0500
commit7e5213b08ce4a0dd39e8582487cd31f06210400e (patch)
tree7bf3a70087ded9210a715508028cf20e1e50927b
parentmedia-libs/rubberband: Stabilize 2.0.0 ppc, #826722 (diff)
downloadgentoo-7e5213b08ce4a0dd39e8582487cd31f06210400e.tar.gz
gentoo-7e5213b08ce4a0dd39e8582487cd31f06210400e.tar.bz2
gentoo-7e5213b08ce4a0dd39e8582487cd31f06210400e.zip
games-puzzle/pathological: add missing || die
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
-rw-r--r--games-puzzle/pathological/pathological-1.1.3_p16-r3.ebuild3
1 files changed, 2 insertions, 1 deletions
diff --git a/games-puzzle/pathological/pathological-1.1.3_p16-r3.ebuild b/games-puzzle/pathological/pathological-1.1.3_p16-r3.ebuild
index 0c32cefd318d..a16de8ecbe0d 100644
--- a/games-puzzle/pathological/pathological-1.1.3_p16-r3.ebuild
+++ b/games-puzzle/pathological/pathological-1.1.3_p16-r3.ebuild
@@ -36,7 +36,8 @@ PATCHES=(
src_prepare() {
# debian's patches add python3 support and sanitize other aspects
# use_ogg_music: excluded given .xm files are fine
- local debian=($(<"${WORKDIR}"/debian/patches/series))
+ local debian
+ debian=($(<"${WORKDIR}"/debian/patches/series)) || die
debian=(${debian[@]/60_use_ogg_music.patch/})
PATCHES+=("${debian[@]/#/${WORKDIR}/debian/patches/}")