summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorFlorian Schmaus <flow@gentoo.org>2023-12-29 11:30:20 +0100
committerFlorian Schmaus <flow@gentoo.org>2023-12-29 11:30:20 +0100
commit02a45ff97b50eb0ecffa7532bf1697b065b71925 (patch)
treed99ead8c90e6e8cc03bdfd21f17e2cfcc63b644b /eclass
parentfix texlive-*-source SRC_URI (diff)
downloadtex-overlay-02a45ff97b50eb0ecffa7532bf1697b065b71925.tar.gz
tex-overlay-02a45ff97b50eb0ecffa7532bf1697b065b71925.tar.bz2
tex-overlay-02a45ff97b50eb0ecffa7532bf1697b065b71925.zip
texlive-common.eclass: fix stray ')'
Thanks to François Bissey for reporting this. Bug: https://bugs.gentoo.org/836779 Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/texlive-common.eclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/texlive-common.eclass b/eclass/texlive-common.eclass
index 7cab06f..d6c381a 100644
--- a/eclass/texlive-common.eclass
+++ b/eclass/texlive-common.eclass
@@ -58,7 +58,7 @@ texlive-common_handle_config_files() {
dodir "/etc/texmf/${rel_dir}.d"
einfo "Moving (and symlinking) ${EPREFIX}${texmf_path}/${f} to ${EPREFIX}/etc/texmf/${rel_dir}.d"
mv "${ED}/${texmf_path}/${f}" "${ED}/etc/texmf/${rel_dir}.d" || die "mv ${f} failed."
- dosym -r "/etc/texmf/${rel_dir}).d/$(basename "${f}")" "${texmf_path}/${f}"
+ dosym -r "/etc/texmf/${rel_dir}.d/$(basename "${f}")" "${texmf_path}/${f}"
done < <(find . -name '*.cnf' -type f -o -name '*.cfg' -type f | sed -e "s:\./::g")
}