From: Stefan Reimer Date: Tue, 31 Jul 2012 09:36:17 +0000 (+0200) Subject: i18n/module-setup.sh: fixed include parsing X-Git-Tag: 023~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a059f72b09009cbc0d77d207e681bf7b6dbb122f;p=thirdparty%2Fdracut.git 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. --- diff --git a/modules.d/10i18n/module-setup.sh b/modules.d/10i18n/module-setup.sh index cf5ad9621..df6e5b193 100755 --- a/modules.d/10i18n/module-setup.sh +++ b/modules.d/10i18n/module-setup.sh @@ -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