Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/notcurses/
Date: Thu, 29 Apr 2021 07:15:33
Message-Id: 1619680320.f52379d616465dc402701ee93e87f110495097ab.juippis@gentoo
1 commit: f52379d616465dc402701ee93e87f110495097ab
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 29 07:12:00 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 29 07:12:00 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f52379d6
7
8 dev-cpp/notcurses: add missing die
9
10 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
11
12 dev-cpp/notcurses/notcurses-2.2.8.ebuild | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/dev-cpp/notcurses/notcurses-2.2.8.ebuild b/dev-cpp/notcurses/notcurses-2.2.8.ebuild
16 index 52303eeff6f..db8a559116e 100644
17 --- a/dev-cpp/notcurses/notcurses-2.2.8.ebuild
18 +++ b/dev-cpp/notcurses/notcurses-2.2.8.ebuild
19 @@ -45,6 +45,6 @@ src_install() {
20 # x.y.1 or x.y.3, to install the source dir as a man page.
21 # exploit the fact that there's a bijection from html<>man.
22 for i in ../*.html ; do
23 - doman ../$(basename ${i} .html)
24 + doman ../$(basename ${i} .html || die)
25 done
26 }