This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Arfrever
Recipients Arfrever, serhiy.storchaka, twouters, vstinner
Date 2016-09-23.14:30:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1474641040.88.0.35544299948.issue28258@psf.upfronthosting.co.za>
In-reply-to
Content
I get "500 Server Error" page when trying to write response in Rietveld, so I will write here...

On 2016/09/23 16:00:58, storchaka wrote:
> https://bugs.python.org/review/28258/diff/18650/Makefile.pre.in
> File Makefile.pre.in (right):
> 
> https://bugs.python.org/review/28258/diff/18650/Makefile.pre.in#newcode1633
> Makefile.pre.in:1633: LC_ALL=C; find $(srcdir)/[a-zA-Z]* '(' -name '*.fdc' -o
> -name '*~' \
> Does it work with ";"?

Yes.
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.

$ export LC_ALL=et_EE.UTF-8
$ mkdir -p /tmp/test/{a,t,z}
$ find /tmp/test/[a-zA-Z]*
/tmp/test/a
/tmp/test/z
$ LC_ALL=C find /tmp/test/[a-zA-Z]*
/tmp/test/a
/tmp/test/z
$ LC_ALL=C; find /tmp/test/[a-zA-Z]*
/tmp/test/a
/tmp/test/t
/tmp/test/z
$
History
Date User Action Args
2016-09-23 14:30:40Arfreversetrecipients: + Arfrever, twouters, vstinner, serhiy.storchaka
2016-09-23 14:30:40Arfreversetmessageid: <1474641040.88.0.35544299948.issue28258@psf.upfronthosting.co.za>
2016-09-23 14:30:40Arfreverlinkissue28258 messages
2016-09-23 14:30:40Arfrevercreate