From dbc995a279b49c64f520d5100796787464cfafc0 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Thu, 29 Sep 2016 20:46:45 +0300 Subject: [PATCH] Issue #28258: Fixed build with Estonian locale (distclean target in Makefile). Patch by Arfrever Frehtes Taifersar Arahesis. --- Makefile.pre.in | 2 +- Misc/NEWS | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile.pre.in b/Makefile.pre.in index 139a211f84..87db1a4087 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1419,7 +1419,7 @@ distclean: clobber 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 index 4327afd063..2b1738f323 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -207,6 +207,9 @@ Tests 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; -- 2.50.0