From 31e22e337cf3d1f60e91142ac83b29b6b0f00713 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Mon, 9 Jan 2017 09:05:18 +1100 Subject: libelf: Use minimal environment for C translation with readelf. The output of readelf needs to be in English. --- rtemstoolkit/elftoolchain/common/native-elf-format | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rtemstoolkit/elftoolchain/common/native-elf-format b/rtemstoolkit/elftoolchain/common/native-elf-format index af70759..4b06672 100755 --- a/rtemstoolkit/elftoolchain/common/native-elf-format +++ b/rtemstoolkit/elftoolchain/common/native-elf-format @@ -19,7 +19,7 @@ touch ${tmp_c} echo "/* Generated by ${program} on `date` */" cc -c ${tmp_c} -o ${tmp_o} -readelf -h ${tmp_o} | awk ' +LANG="C" readelf -h ${tmp_o} | awk ' $1 ~ "Class:" { sub("ELF","",$2); elfclass = $2; } @@ -44,4 +44,3 @@ END { printf("#define ELFTC_ARCH %s\n", elfarch); printf("#define ELFTC_BYTEORDER ELFDATA2%s\n", elfdata); }' - -- cgit v1.2.3