Codebase list texinfo / 79eee15
Merge pull request #9 from diederikdehaas/patch-1 Replace 'which' with 'command -v' hpreusse authored 2 years ago GitHub committed 2 years ago
1 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
6565 # So we have to check for the existence of this file
6666 # before we can call update-fmtutil
6767 #if [ -r /etc/texmf/fmt.d/00tex.cnf ] ; then
68 if which update-fmtutil > /dev/null ; then update-fmtutil --quiet ; fi
68 if command -v update-fmtutil > /dev/null ; then update-fmtutil --quiet ; fi
6969 #fi
70 if which mktexlsr >/dev/null; then update_lsr_files; fi
70 if command -v mktexlsr >/dev/null; then update_lsr_files; fi
7171 # tetex might be unpacked but not configured, we have to check
7272 # whether /etc/texmf/texmf.cnf already exists. The following check
7373 # does two things: 1) check whether libkpathsea is configured, and