]> granicus.if.org Git - python/commitdiff
Issue #28258: Explain the LC_ALL change in a comment
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 29 Sep 2016 20:31:06 +0000 (22:31 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Thu, 29 Sep 2016 20:31:06 +0000 (22:31 +0200)
Makefile.pre.in

index b19d09f9c69893d695f8a7f3bee5ca852eb3c0cc..b379ce9b1ee3246780790c2c26c1c36f58f9c30d 100644 (file)
@@ -1623,6 +1623,10 @@ distclean: clobber
                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' \