Skip to content

Commit 9e1c7f3

Browse files
committed
fix(i18n): create the keyboard symlinks again
Invalid space broke the creation of the keyboard subdirectories, leading to a symbolic link usr/share/consolefonts,consoletrans,keymaps,unimaps -> /usr/lib/kbd/consolefonts,consoletrans,keymaps,unimaps in the created initramfs. With this fix the correct symlinks are created again: usr/share/consolefonts -> /usr/lib/kbd/consolefonts usr/share/consoletrans -> /usr/lib/kbd/consoletrans usr/share/keymaps -> /usr/lib/kbd/keymaps usr/share/unimaps -> /usr/lib/kbd/unimaps
1 parent 2c9debe commit 9e1c7f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules.d/10i18n/module-setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ install() {
110110
111111
if [[ ${kbddir} != "/usr/share" ]]; then
112112
inst_dir /usr/share
113-
for _src in $(eval echo "{ ${KBDSUBDIRS} }"); do
113+
for _src in $(eval echo "{${KBDSUBDIRS}}"); do
114114
[ ! -e "${initdir}/usr/share/${_src}" ] && ln -s "${kbddir}/${_src}" "${initdir}/usr/share/${_src}"
115115
done
116116
fi

0 commit comments

Comments
 (0)