From: Harald Hoyer Date: Thu, 14 Aug 2014 10:56:53 +0000 (+0200) Subject: i18n: check for $i18n_install_all == "yes" rather than being set X-Git-Tag: 039~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae488efa5e6103ffc1be8b8782f8a1c7a5aa90b4;p=thirdparty%2Fdracut.git i18n: check for $i18n_install_all == "yes" rather than being set i18n_install_all="no" does not have the expected effect without this patch --- diff --git a/modules.d/10i18n/module-setup.sh b/modules.d/10i18n/module-setup.sh index a091f89f7..720fcbdbd 100755 --- a/modules.d/10i18n/module-setup.sh +++ b/modules.d/10i18n/module-setup.sh @@ -247,7 +247,7 @@ install() { if checks; then install_base - if [[ ${hostonly} ]] && ! [[ ${i18n_install_all} ]]; then + if [[ ${hostonly} ]] && ! [[ ${i18n_install_all} == "yes" ]]; then install_local_i18n || install_all_kbd else install_all_kbd