From: Serhiy Storchaka Date: Thu, 29 Sep 2016 17:46:45 +0000 (+0300) Subject: Issue #28258: Fixed build with Estonian locale (distclean target in X-Git-Tag: v2.7.13rc1~102 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dbc995a279b49c64f520d5100796787464cfafc0;p=thirdparty%2FPython%2Fcpython.git Issue #28258: Fixed build with Estonian locale (distclean target in Makefile). Patch by Arfrever Frehtes Taifersar Arahesis. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 139a211f8453..87db1a408769 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 4327afd063a3..2b1738f323e8 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;