diff options
author | David Seifert <soap@gentoo.org> | 2019-12-11 13:32:00 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-12-11 13:32:00 +0100 |
commit | 398a42634f34afa1979d88ae1d8b38194e911c2d (patch) | |
tree | d6a45bdf7b35b71c192602a46e8d98d12a88cb02 /dev-tex/cjk-latex | |
parent | dev-ros/geometric_shapes: Remove old (diff) | |
download | gentoo-398a42634f34afa1979d88ae1d8b38194e911c2d.tar.gz gentoo-398a42634f34afa1979d88ae1d8b38194e911c2d.tar.bz2 gentoo-398a42634f34afa1979d88ae1d8b38194e911c2d.zip |
*/*: [QA] Remove redundant `|| die` guards
* Since all ebuilds in the tree are EAPI>=4,
`|| die` on builtin commands is redundant
and dead code.
Closes: https://github.com/gentoo/gentoo/pull/13940
Reviewed-by: Ulrich Müller <ulm@gentoo.org>
Reviewed-by: Michał Górny <mgorny@gentoo.org>
Reviewed-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-tex/cjk-latex')
-rw-r--r-- | dev-tex/cjk-latex/cjk-latex-4.8.4.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dev-tex/cjk-latex/cjk-latex-4.8.4.ebuild b/dev-tex/cjk-latex/cjk-latex-4.8.4.ebuild index df0a850f7e88..4393972bc9c6 100644 --- a/dev-tex/cjk-latex/cjk-latex-4.8.4.ebuild +++ b/dev-tex/cjk-latex/cjk-latex-4.8.4.ebuild @@ -60,11 +60,11 @@ src_compile() { cd utils for d in *conv; do cd $d - emake || die + emake cd - done cd hbf2gf - emake || die + emake cd - if use emacs ; then @@ -108,14 +108,14 @@ src_install() { for d in fonts/pk/modeless/*/* ; do insinto ${TEXMF}/${d} for f in "${T}"/${d##*/}*.pk ; do - newins $f `basename ${f/.pk/.500pk}` || die "newins failed" + newins $f `basename ${f/.pk/.500pk}` done done popd &>/dev/null insinto "${TEXMF}/tex/latex/${PN}" - doins -r texinput/* || die "installing texinput files failed" - doins -r contrib/wadalab || die "installing wadalab failed" + doins -r texinput/* + doins -r contrib/wadalab if use emacs ; then cd utils/lisp @@ -140,7 +140,7 @@ src_install() { use doc || rm -rf texmf/doc insinto ${TEXMF} - doins -r texmf/* || die "installing texmf failed" + doins -r texmf/* # Move fonts because hbf2gf expects them in MISCFONTS mv "${ED}/${TEXMF}/fonts/hbf" "${ED}/${TEXMF}/fonts/misc" || die "mv font failed" |