dracut: added patch to fix 10i18n module.
This commit is contained in:
parent
03d03af1c8
commit
e09cb1c57e
13
srcpkgs/dracut/patches/fix-parse-i18n.sh.patch
Normal file
13
srcpkgs/dracut/patches/fix-parse-i18n.sh.patch
Normal 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
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue
Block a user