>From 633dcb9167582064ec5d2d832450e93768cfe376 Mon Sep 17 00:00:00 2001 From: H. Peter Anvin Date: Fri, 25 Dec 2009 15:34:33 -0800 Subject: [PATCH] Makefile: Set LC_ALL=C We were setting LC_CTYPE, LC_COLLATE and LC_NUMERIC to the C locale, with the intent that LC_MESSAGES would still be localized. Unfortunately, that doesn't seem to actually work in real life, so just be done with it and set LC_ALL=C. Signed-off-by: H. Peter Anvin --- Makefile | 7 ++----- 1 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index c628a5c..a801d1d 100644 --- a/Makefile +++ b/Makefile @@ -17,11 +17,8 @@ NAME = Man-Eating Seals of Antiquity MAKEFLAGS += -rR --no-print-directory # Avoid funny character set dependencies -unexport LC_ALL -LC_CTYPE=C -LC_COLLATE=C -LC_NUMERIC=C -export LC_CTYPE LC_COLLATE LC_NUMERIC +LC_ALL=C +export LC_ALL # We are using a recursive build, so we need to do a little thinking # to get the ordering right. -- 1.6.2.5