From c797f139bbca0905255d35c26cdad66ca06c2e17 Mon Sep 17 00:00:00 2001 From: Justine Tunney Date: Fri, 19 Feb 2021 17:10:13 -0800 Subject: [PATCH] Set LC_ALL=C in build config (#43) It's most likely the case (and SHOULD be the case) that C is the same locale as C.UTF-8. The only exception might be Python's gonzo unicode handling which whines when unicode is used without authorization, but that shouldn't be an issue since we don't need Python to build. --- build/definitions.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/definitions.mk b/build/definitions.mk index 456f8d524..4635a93db 100644 --- a/build/definitions.mk +++ b/build/definitions.mk @@ -43,7 +43,7 @@ # TARGET_ARCH microarchitecture flags (e.g. -march=native) V ?= 1 -LC_ALL = C.UTF-8 +LC_ALL = C SOURCE_DATE_EPOCH = 0 DD ?= /bin/dd