dev-cpp/notcurses: add missing die

Signed-off-by: Joonas Niilola <juippis@gentoo.org>
This commit is contained in:
Joonas Niilola
2021-04-29 10:12:00 +03:00
parent 056eabb706
commit f52379d616

View File

@@ -45,6 +45,6 @@ src_install() {
# x.y.1 or x.y.3, to install the source dir as a man page.
# exploit the fact that there's a bijection from html<>man.
for i in ../*.html ; do
doman ../$(basename ${i} .html)
doman ../$(basename ${i} .html || die)
done
}