diff options
author | Stefan Reimer <it@startux.de> | 2012-07-31 11:36:17 +0200 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2012-07-31 11:36:17 +0200 |
commit | a059f72b09009cbc0d77d207e681bf7b6dbb122f (patch) | |
tree | 4bf97ec4cb54dbe68e111a4e56a506b65a48e590 /modules.d/10i18n | |
parent | afcebd136f6ab30476097407e8158e4f3a68c9c2 (diff) | |
download | dracut-a059f72b09009cbc0d77d207e681bf7b6dbb122f.tar.gz dracut-a059f72b09009cbc0d77d207e681bf7b6dbb122f.tar.bz2 dracut-a059f72b09009cbc0d77d207e681bf7b6dbb122f.zip |
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.
Diffstat (limited to 'modules.d/10i18n')
-rwxr-xr-x | modules.d/10i18n/module-setup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules.d/10i18n/module-setup.sh b/modules.d/10i18n/module-setup.sh index cf5ad962..df6e5b19 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 |