Package-Manager: Portage-2.3.24, Repoman-2.3.6
local target=$1
shift
- mkdir "${BUILD_DIR}/${target}"
+ mkdir "${BUILD_DIR}/${target}" || die
cd "${BUILD_DIR}/${target}" || die
local conf=(
# 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 "$@"
}
# 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
}