Search
j0ke.net Open Build Service
>
Projects
>
home:jg
:
playground
>
dracut
> 0121-dracut-functions-set-LANG-C-for-ldd-output-parsing.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File 0121-dracut-functions-set-LANG-C-for-ldd-output-parsing.patch of Package dracut
From 77818e694fb1f6bfe57b160064780adfea833b83 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 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dracut-functions b/dracut-functions index 3cb1201..ee229f6 100755 --- a/dracut-functions +++ b/dracut-functions @@ -218,7 +218,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." -- 1.8.3.1