95terminfo/module-setup.sh: no need to call "find"

master
Harald Hoyer 2012-02-25 16:51:35 +01:00
parent 7a5f1ee46a
commit ddd01008ff
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ install() {
done

if [ -d ${_terminfodir} ]; then
for f in $(find ${_terminfodir} -type f); do
for f in ${_terminfodir}/*/*; do
inst_simple $f
done
fi