Skip to content

Commit

Permalink
eclass/texlive-common.eclass: fix texlive-common_is_file_present_in_t…
Browse files Browse the repository at this point in the history
…exmf.

Function was not returning if the file was found or not. Always returned true.

Fixes: [dcfc582] texlive-common.eclass: kill POSIXism

Closes: https://bugs.gentoo.org/736872
Signed-off-by: Alexis Ballier <[email protected]>
  • Loading branch information
aballier committed Aug 12, 2020
1 parent c257362 commit bb12aac
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions eclass/texlive-common.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ texlive-common_is_file_present_in_texmf() {
if [[ -d texmf-dist ]]; then
find texmf-dist -name ${1} -exec touch ${mark} {} + || die
fi
[ -f "${mark}" ]
}

# @FUNCTION: texlive-common_do_symlinks
Expand Down

0 comments on commit bb12aac

Please sign in to comment.