Commit 0970a36c authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #28258: Fixed build with Estonian locale (python-config and distclean

targets in Makefile).  Patch by Arfrever Frehtes Taifersar Arahesis.
parent 69d665d8
...@@ -1341,7 +1341,7 @@ python-config: $(srcdir)/Misc/python-config.in Misc/python-config.sh ...@@ -1341,7 +1341,7 @@ python-config: $(srcdir)/Misc/python-config.in Misc/python-config.sh
# is not available in configure # is not available in configure
sed -e "s,@EXENAME@,$(BINDIR)/python$(LDVERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config.py 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} # 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 # On Darwin, always use the python version of the script, the shell
# version doesn't use the compiler customizations that are provided # version doesn't use the compiler customizations that are provided
# in python (_osx_support.py). # in python (_osx_support.py).
...@@ -1623,7 +1623,7 @@ distclean: clobber ...@@ -1623,7 +1623,7 @@ distclean: clobber
Modules/Setup Modules/Setup.local Modules/Setup.config \ Modules/Setup Modules/Setup.local Modules/Setup.config \
Modules/ld_so_aix Modules/python.exp Misc/python.pc Modules/ld_so_aix Modules/python.exp Misc/python.pc
-rm -f python*-gdb.py -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 '[@,#]*' -o -name '*.old' \
-o -name '*.orig' -o -name '*.rej' \ -o -name '*.orig' -o -name '*.rej' \
-o -name '*.bak' ')' \ -o -name '*.bak' ')' \
......
...@@ -408,6 +408,9 @@ Windows ...@@ -408,6 +408,9 @@ Windows
Build 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 #26661: setup.py now detects system libffi with multiarch wrapper.
- Issue #28066: Fix the logic that searches build directories for generated - Issue #28066: Fix the logic that searches build directories for generated
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment