i18n/module-setup.sh: fixed include parsing

Due to bug in module-setup.sh in the i18n module includes from the main
keymap are not working and not added to the initrd image.

Only one quotation per line is removed. Needs to remove all.
master
Stefan Reimer 2012-07-31 11:36:17 +02:00 committed by Harald Hoyer
parent afcebd136f
commit a059f72b09
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ install() {
*) cmd=grep ;;
esac

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