diff options
author | Joonas Niilola <juippis@gentoo.org> | 2021-04-29 10:12:00 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2021-04-29 10:12:00 +0300 |
commit | f52379d616465dc402701ee93e87f110495097ab (patch) | |
tree | 6dfd50ae4b0f0a871db72c3d1a6ec3cf377cc767 /dev-cpp/notcurses | |
parent | dev-cpp/notcurses: remove old 2.2.3 (diff) | |
download | gentoo-f52379d616465dc402701ee93e87f110495097ab.tar.gz gentoo-f52379d616465dc402701ee93e87f110495097ab.tar.bz2 gentoo-f52379d616465dc402701ee93e87f110495097ab.zip |
dev-cpp/notcurses: add missing die
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-cpp/notcurses')
-rw-r--r-- | dev-cpp/notcurses/notcurses-2.2.8.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-cpp/notcurses/notcurses-2.2.8.ebuild b/dev-cpp/notcurses/notcurses-2.2.8.ebuild index 52303eeff6fe..db8a559116e6 100644 --- a/dev-cpp/notcurses/notcurses-2.2.8.ebuild +++ b/dev-cpp/notcurses/notcurses-2.2.8.ebuild @@ -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 } |