[openssl-commits] [openssl] master update
Andy Polyakov
appro at openssl.org
Sun Jul 31 15:08:29 UTC 2016
The branch master has been updated
via 9c7ce40bfbf580ebfc50484a069b44dc9aa463fd (commit)
from abdb460d8abe68fedcf00b52d2ba4bf4b7c1725c (commit)
- Log -----------------------------------------------------------------
commit 9c7ce40bfbf580ebfc50484a069b44dc9aa463fd
Author: Andy Polyakov <appro at openssl.org>
Date: Thu Jul 28 23:05:32 2016 +0200
Configurations/unix-Makefile.tmpl: add LC_ALL=C to unify messages.
RT#4138
Reviewed-by: Rich Salz <rsalz at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
Configurations/unix-Makefile.tmpl | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl
index 6c4485b..3caa216 100644
--- a/Configurations/unix-Makefile.tmpl
+++ b/Configurations/unix-Makefile.tmpl
@@ -222,6 +222,15 @@ PERLASM_SCHEME= {- $target{perlasm_scheme} -}
# the 80386.
PROCESSOR= {- $config{processor} -}
+# We want error [and other] messages in English. Trouble is that make(1)
+# doesn't pass macros down as environment variables unless there already
+# was corresponding variable originally set. In other words we can only
+# reassign environment variables, but not set new ones, not in portable
+# manner that is. That's why we reassign several, just to be sure...
+LC_ALL=C
+LC_MESSAGES=C
+LANG=C
+
# The main targets ###################################################
{- dependmagic('all'); -}: build_libs_nodep build_engines_nodep build_programs_nodep link-utils
More information about the openssl-commits
mailing list