dracut: added patch to fix 10i18n module.

This commit is contained in:
Juan RP 2014-04-28 12:47:52 +02:00
parent 03d03af1c8
commit e09cb1c57e
2 changed files with 14 additions and 1 deletions

View File

@ -0,0 +1,13 @@
typo fix that avoids '1=""' in generated vconsole.conf.
--- modules.d/10i18n/parse-i18n.sh.orig 2014-04-28 12:44:54.540715927 +0200
+++ modules.d/10i18n/parse-i18n.sh 2014-04-28 12:45:10.587813907 +0200
@@ -12,7 +12,7 @@ inst_key_val() {
_value="$(getarg $@)"
[ -z "${_value}" ] && _value=$_default
if [ -n "${_value}" ]; then
- printf '%s="%s"\n' $key ${_value} >> $_file
+ printf '%s="%s"\n' ${_key} ${_value} >> $_file
fi
unset _file
unset _value

View File

@ -1,7 +1,7 @@
# Template file for 'dracut'
pkgname=dracut
version=037
revision=1
revision=2
build_style=meta
hostmakedepends="libxslt docbook-xsl asciidoc"
makedepends="psmisc cpio xz"