Commit 5e8ea173 authored by Priit Laes's avatar Priit Laes Committed by NiteHawk
Browse files

Make sure that awk patterns are not locale-specific.



Locales can influence conversion, so make sure we all use the same one.
Signed-off-by: default avatarPriit Laes <plaes@plaes.org>
parent baa15207
......@@ -23,7 +23,7 @@ CROSS_COMPILE ?= $(shell find $(PATH_DIRS) -executable -name 'arm*-gcc' -printf
AS := $(CROSS_COMPILE)as
OBJDUMP := $(CROSS_COMPILE)objdump
AWK_O_TO_H := awk -f objdump_to_h.awk
AWK_O_TO_H := LC_ALL=C awk -f objdump_to_h.awk
# The SPL thunk requires a different output format. The "style" variable for
# awk controls this, and causes the htole32() conversion to be omitted.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment