[Python-checkins] cpython (2.7): Issue #28258: Fixed build with Estonian locale (distclean target in

serhiy.storchaka python-checkins at python.org
Thu Sep 29 13:48:07 EDT 2016


https://hg.python.org/cpython/rev/f2247d1cb884
changeset:   104160:f2247d1cb884
branch:      2.7
parent:      104153:520ca3652422
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Thu Sep 29 20:46:45 2016 +0300
summary:
  Issue #28258: Fixed build with Estonian locale (distclean target in
Makefile).  Patch by Arfrever Frehtes Taifersar Arahesis.

files:
  Makefile.pre.in |  2 +-
  Misc/NEWS       |  3 +++
  2 files changed, 4 insertions(+), 1 deletions(-)


diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1419,7 +1419,7 @@
 		Modules/ld_so_aix Modules/python.exp Misc/python.pc
 	-rm -f python*-gdb.py
 	-rm -f pybuilddir.txt
-	find $(srcdir)/[a-zA-Z]* '(' -name '*.fdc' -o -name '*~' \
+	LC_ALL=C; find $(srcdir)/[a-zA-Z]* '(' -name '*.fdc' -o -name '*~' \
 				     -o -name '[@,#]*' -o -name '*.old' \
 				     -o -name '*.orig' -o -name '*.rej' \
 				     -o -name '*.bak' ')' \
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -207,6 +207,9 @@
 Build
 -----
 
+- Issue #28258: Fixed build with Estonian locale (distclean target in
+  Makefile).  Patch by Arfrever Frehtes Taifersar Arahesis.
+
 - Issue #26661: setup.py now detects system libffi with multiarch wrapper.
 
 - Issue #15819: The Include directory in the build tree is already searched;

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list