From: Mikle Kolyada Date: Sun, 23 Feb 2020 19:23:39 +0000 (+0300) Subject: texlive-module:eclass correct missing if block X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7b6015c3d26ed4acdc4360d74dbe8b6d88cc9ad2;p=gentoo.git texlive-module:eclass correct missing if block Signed-off-by: Mikle Kolyada --- diff --git a/eclass/texlive-module.eclass b/eclass/texlive-module.eclass index 3f31f35e1abb..5c4dec838d77 100644 --- a/eclass/texlive-module.eclass +++ b/eclass/texlive-module.eclass @@ -163,7 +163,11 @@ texlive-module_add_format() { local name engine mode patterns options eval $@ einfo "Appending to format.${PN}.cnf for $@" - [[ -d texmf-dist/fmtutil ]] || mkdir -p texmf-dist/fmtutil || die + + if [[ ! -d texmf-dist/fmtutil ]]; then + mkdir -p texmf-dist/fmtutil || die + fi + [[ -f texmf-dist/fmtutil/format.${PN}.cnf ]] || { echo "# Generated for ${PN} by texlive-module.eclass" > texmf-dist/fmtutil/format.${PN}.cnf; } [[ -n ${TEXLIVE_MODULE_OPTIONAL_ENGINE} ]] && has ${engine} ${TEXLIVE_MODULE_OPTIONAL_ENGINE} && use !${engine} && mode="disabled" if [[ ${mode} = disabled ]]; then