changeset: 104158:1b9e71f5de83 branch: 3.6 parent: 104155:eac20127d51e parent: 104157:6110997dd6e7 user: Serhiy Storchaka date: Thu Sep 29 20:39:45 2016 +0300 files: Makefile.pre.in Misc/NEWS description: Issue #28258: Fixed build with Estonian locale (python-config and distclean targets in Makefile). Patch by Arfrever Frehtes Taifersar Arahesis. diff -r eac20127d51e -r 1b9e71f5de83 Makefile.pre.in --- a/Makefile.pre.in Wed Sep 28 23:17:04 2016 -0700 +++ b/Makefile.pre.in Thu Sep 29 20:39:45 2016 +0300 @@ -1347,7 +1347,7 @@ # is not available in configure sed -e "s,@EXENAME@,$(BINDIR)/python$(LDVERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config.py # Replace makefile compat. variable references with shell script compat. ones; $(VAR) -> ${VAR} - sed -e 's,\$$(\([A-Za-z0-9_]*\)),\$$\{\1\},g' < Misc/python-config.sh >python-config + LC_ALL=C sed -e 's,\$$(\([A-Za-z0-9_]*\)),\$$\{\1\},g' < Misc/python-config.sh >python-config # On Darwin, always use the python version of the script, the shell # version doesn't use the compiler customizations that are provided # in python (_osx_support.py). @@ -1630,7 +1630,7 @@ Modules/Setup Modules/Setup.local Modules/Setup.config \ Modules/ld_so_aix Modules/python.exp Misc/python.pc -rm -f python*-gdb.py - 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 -r eac20127d51e -r 1b9e71f5de83 Misc/NEWS --- a/Misc/NEWS Wed Sep 28 23:17:04 2016 -0700 +++ b/Misc/NEWS Thu Sep 29 20:39:45 2016 +0300 @@ -155,6 +155,9 @@ Build ----- +- Issue #28258: Fixed build with Estonian locale (python-config and distclean + targets in Makefile). Patch by Arfrever Frehtes Taifersar Arahesis. + - Issue #26661: setup.py now detects system libffi with multiarch wrapper. - Issue #15819: Remove redundant include search directory option for building