(original) (raw)
changeset: 104164:17f2b6b2e24c branch: 3.5 parent: 104157:6110997dd6e7 user: Victor Stinner victor.stinner@gmail.com date: Thu Sep 29 22:31:06 2016 +0200 files: Makefile.pre.in description: Issue #28258: Explain the LC_ALL change in a comment diff -r 6110997dd6e7 -r 17f2b6b2e24c Makefile.pre.in --- a/Makefile.pre.in Thu Sep 29 20:29:23 2016 +0300 +++ b/Makefile.pre.in Thu Sep 29 22:31:06 2016 +0200 @@ -1623,6 +1623,10 @@ Modules/Setup Modules/Setup.local Modules/Setup.config \ Modules/ld_so_aix Modules/python.exp Misc/python.pc -rm -f python*-gdb.py + # Issue #28258: set LC_ALL to avoid issues with Estonian locale. + # Expansion is performed here by shell (spawned by make) itself before + # arguments are passed to find. So LC_ALL=C must be set as a separate + # command. LC_ALL=C; find $(srcdir)/[a-zA-Z]* '(' -name '*.fdc' -o -name '*~' \ -o -name '[@,#]*' -o -name '*.old' \ -o -name '*.orig' -o -name '*.rej' \ /victor.stinner@gmail.com