commit:     cc319d66126d132d9b48aeed41ed5ea6c8e4e82a
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu May 17 08:49:01 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu May 17 08:49:13 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc319d66

sys-libs/ncurses: more || die, dohtml -> dodoc

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-libs/ncurses/ncurses-6.1-r2.ebuild | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-libs/ncurses/ncurses-6.1-r2.ebuild 
b/sys-libs/ncurses/ncurses-6.1-r2.ebuild
index 4a58bd1d79b..cba17fff6d1 100644
--- a/sys-libs/ncurses/ncurses-6.1-r2.ebuild
+++ b/sys-libs/ncurses/ncurses-6.1-r2.ebuild
@@ -102,7 +102,7 @@ do_configure() {
        local target=$1
        shift
 
-       mkdir "${BUILD_DIR}/${target}"
+       mkdir "${BUILD_DIR}/${target}" || die
        cd "${BUILD_DIR}/${target}" || die
 
        local conf=(
@@ -219,7 +219,7 @@ do_compile() {
        # compiled libraries which depends on sources which ...
        # Manually delete the pc-files file so the install step will
        # create the .pc files we want.
-       rm -f misc/pc-files
+       rm -f misc/pc-files || die
        emake "$@"
 }
 
@@ -276,11 +276,11 @@ multilib_src_install_all() {
        # Because ncurses5-config --terminfo returns the directory we keep it
        keepdir /usr/share/terminfo #245374
 
-       cd "${S}"
+       cd "${S}" || die
        dodoc ANNOUNCE MANIFEST NEWS README* TO-DO doc/*.doc
        if use doc ; then
                docinto html
-               dohtml -r doc/html/
+               dodoc -r doc/html/
        fi
 }
 

Reply via email to