Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > e9f274de3941bec6c1eaddeb38e187f4 > files > 8

dracut-006-6.fc14.src.rpm

From a3f3f9e0553d48013b1c88c594678be412763c48 Mon Sep 17 00:00:00 2001
From: Harald Hoyer <harald@redhat.com>
Date: Tue, 22 Jun 2010 10:32:25 +0200
Subject: [PATCH] dracut-functions: set LANG=C for ldd output parsing

---
 dracut-functions |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dracut-functions b/dracut-functions
index 58f119f..57dd702 100755
--- a/dracut-functions
+++ b/dracut-functions
@@ -248,7 +248,7 @@ inst_binary() {
     local LDSO NAME IO FILE ADDR I1 n f TLIBDIR
     [[ -e $initdir$target ]] && return 0
     # I love bash!
-    ldd $bin 2>/dev/null | while read line; do
+    LANG=C ldd $bin 2>/dev/null | while read line; do
 	[[ $line = 'not a dynamic executable' ]] && return 1
 	if [[ $line =~ not\ found ]]; then
 	    derror "Missing a shared library required by $bin."