10i18n: Fix possible infinite recursion

master
Daniel Molkentin 2018-04-27 16:59:47 +02:00 committed by Harald Hoyer
parent 740e41b843
commit c9b5165daa
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ install() {


for INCL in $($cmd "^include " $map | while read a a b || [ -n "$a" ]; do echo ${a//\"/}; done); do for INCL in $($cmd "^include " $map | while read a a b || [ -n "$a" ]; do echo ${a//\"/}; done); do
for FN in $(find ${kbddir}/keymaps -type f -name $INCL\*); do for FN in $(find ${kbddir}/keymaps -type f -name $INCL\*); do
findkeymap $FN strstr "$KEYMAPS" "$FN" || findkeymap $FN
done done
done done
done done