dracut-functions: use LC_ALL=C rather than LANG=C

This commit is contained in:
Harald Hoyer 2010-06-22 11:59:49 +02:00
parent e4ebd474ec
commit 45b5a4e142

View File

@ -248,7 +248,7 @@ inst_binary() {
local LDSO NAME IO FILE ADDR I1 n f TLIBDIR
[[ -e $initdir$target ]] && return 0
# I love bash!
LANG=C ldd $bin 2>/dev/null | while read line; do
LC_ALL=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."