From: Andy Polyakov Date: Sat, 21 Nov 2015 10:28:05 +0000 (+0100) Subject: Makefile.org: add LC_ALL=C to unify error [and other] messages. X-Git-Tag: OpenSSL_1_0_2e~19 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9252d71557c49fbb802854ea0de58e319645a448;p=oweals%2Fopenssl.git Makefile.org: add LC_ALL=C to unify error [and other] messages. RT#4138 Reviewed-by: Richard Levitte (cherry picked from commit 193ed2d74b1a643b5f32bd46bf50a858fcdd2da4) --- diff --git a/Makefile.org b/Makefile.org index 48469c5f07..0333644415 100644 --- a/Makefile.org +++ b/Makefile.org @@ -203,7 +203,9 @@ CLEARENV= TOP= && unset TOP $${LIB+LIB} $${LIBS+LIBS} \ $${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS} \ $${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS} -BUILDENV= PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)' \ +# LC_ALL=C ensures that error [and other] messages are delivered in +# same language for uniform treatment. +BUILDENV= LC_ALL=C PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)'\ CC='$(CC)' CFLAG='$(CFLAG)' \ AS='$(CC)' ASFLAG='$(CFLAG) -c' \ AR='$(AR)' NM='$(NM)' RANLIB='$(RANLIB)' \