summaryrefslogtreecommitdiffstats
path: root/util/xcompile
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2015-08-24 11:26:20 -0600
committerMartin Roth <martinroth@google.com>2015-08-25 15:40:44 +0000
commit1fff0d26f80c9f412a500f40b29bbbd88572febc (patch)
tree41cfa364f59e8e3e9833a8700475cb81987ee6e9 /util/xcompile
parent56354d503d89c1e87b7b426a0ec31077b6af0e6e (diff)
downloadcoreboot-staging-1fff0d26f80c9f412a500f40b29bbbd88572febc.zip
coreboot-staging-1fff0d26f80c9f412a500f40b29bbbd88572febc.tar.gz
xcompile: Force localization of objdump to C
In testing other localization changes, I found that I couldn't build anymore because xcompile wasn't picking up my toolchain. I traced it to the regex comparison of '.*format \(.[a-z0-9-]*\)' to the string 'formato del fichero elf32-i386'. Forcing the localization of objdump to C before doing the comparison fixes the issue. Change-Id: I6bed5a9824807dd5bc5a38b711ab47e2af4b0c29 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: http://review.coreboot.org/11304 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com> Reviewed-by: Zheng Bao <zheng.bao@amd.com>
Diffstat (limited to 'util/xcompile')
-rwxr-xr-xutil/xcompile/xcompile2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile
index 4560771..e712ac3 100755
--- a/util/xcompile/xcompile
+++ b/util/xcompile/xcompile
@@ -103,7 +103,7 @@ testas() {
2>/dev/null || return 1
# Check output content type.
- local obj_type="$(${gccprefix}objdump -p $obj_file)"
+ local obj_type="$(LANG=C LC_ALL= ${gccprefix}objdump -p $obj_file)"
local obj_arch="$(expr "$obj_type" : '.*format \(.[a-z0-9-]*\)')"
[ "$obj_arch" = "$full_arch" ] || return 1
OpenPOWER on IntegriCloud