Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
8 lines
221 B
Bash
8 lines
221 B
Bash
#!/bin/sh
|
|
if ! which mktexlsr >/dev/null; then
|
|
echo "I can't find mktexlsr in your search path."
|
|
echo "If you want to use noweb's (La)TeX output"
|
|
echo "you should also install the teTeX package."
|
|
else
|
|
mktexlsr
|
|
fi
|