Re: [U-Boot] [PATCH] fix linker generated lists on non-C locales

2013-01-13 Thread Marek Vasut
Dear David Marqvar Nielsen, > Hi Marex, > > Any change that the fix for the problem this patch addresses will make it > into 2013.01 ? > I will test the variant "*LC_ALL= *LC_COLLATE=C sort -u | \ > tomorrow. Please always reply to the list. I'm Ccing most of the involved people. Best regards,

Re: [U-Boot] [PATCH] fix linker generated lists on non-C locales

2012-12-03 Thread Marek Vasut
Dear Wolfgang Denk, > Dear Marek Vasut, > > In message <201212030457.11755.ma...@denx.de> you wrote: > > > IMHO it would make more sense to just make sure that LC_ALL is not set > > > at all, i. e. to explicitly unset it. > > > > Hrm ... shall we introduce a patch that sanitizes the env then? Ma

Re: [U-Boot] [PATCH] fix linker generated lists on non-C locales

2012-12-03 Thread Wolfgang Denk
Dear Marek Vasut, In message <201212030457.11755.ma...@denx.de> you wrote: > > > IMHO it would make more sense to just make sure that LC_ALL is not set > > at all, i. e. to explicitly unset it. > > Hrm ... shall we introduce a patch that sanitizes the env then? Maybe we can > fix > the LDFLAGS

Re: [U-Boot] [PATCH] fix linker generated lists on non-C locales

2012-12-02 Thread Marek Vasut
Dear Wolfgang Denk, > Dear Pavel Herrmann, > > In message <1354470210-30801-1-git-send-email-morpheus.i...@gmail.com> you wrote: > > Setting LC_COLLATE=C is not enough if LC_ALL=en_US.utf8. The result is a > > build that has no available commands. Setting LC_ALL=C for the generator > > script he

Re: [U-Boot] [PATCH] fix linker generated lists on non-C locales

2012-12-02 Thread Wolfgang Denk
Dear Marek Vasut, In message <201212022013.13540.ma...@denx.de> you wrote: > > "This works because LC_ALL sets LC_COLLATE, as well as all other LC_* > environment variables." > > Where can I verify this? Do you have any link to any documentation? Is it really so difficult to find TFM these day

Re: [U-Boot] [PATCH] fix linker generated lists on non-C locales

2012-12-02 Thread Wolfgang Denk
Dear Pavel Herrmann, In message <1354470210-30801-1-git-send-email-morpheus.i...@gmail.com> you wrote: > Setting LC_COLLATE=C is not enough if LC_ALL=en_US.utf8. The result is a build > that has no available commands. Setting LC_ALL=C for the generator script > helps. Setting LC_ALL is a pretty

Re: [U-Boot] [PATCH] fix linker generated lists on non-C locales

2012-12-02 Thread Marek Vasut
Dear Pavel Herrmann, [...] > > > > > - LC_COLLATE=C sort -u | \ > > > > > + LC_ALL=C sort -u | \ > > > > > > > > How will this work? LC_COLLATE is supposed to adjust the behavior of > > > > "sort" command, without it, "sort" will not behave as expected. > > > > > > Clearly, LC_COLLATE i

Re: [U-Boot] [PATCH] fix linker generated lists on non-C locales

2012-12-02 Thread Marek Vasut
Dear Pavel Herrmann, > On Sunday 02 of December 2012 19:12:17 Marek Vasut wrote: > > Dear Pavel Herrmann, > > > > > On Sunday 02 of December 2012 18:50:53 Marek Vasut wrote: > > > > Dear Pavel Herrmann, > > > > > > > > > Setting LC_COLLATE=C is not enough if LC_ALL=en_US.utf8. The result > > > >

Re: [U-Boot] [PATCH] fix linker generated lists on non-C locales

2012-12-02 Thread Pavel Herrmann
On Sunday 02 of December 2012 19:12:17 Marek Vasut wrote: > Dear Pavel Herrmann, > > > On Sunday 02 of December 2012 18:50:53 Marek Vasut wrote: > > > Dear Pavel Herrmann, > > > > > > > Setting LC_COLLATE=C is not enough if LC_ALL=en_US.utf8. The result is > > > > a build that has no available co

Re: [U-Boot] [PATCH] fix linker generated lists on non-C locales

2012-12-02 Thread Pavel Herrmann
On Sunday 02 of December 2012 19:12:17 Marek Vasut wrote: > Dear Pavel Herrmann, > > > On Sunday 02 of December 2012 18:50:53 Marek Vasut wrote: > > > Dear Pavel Herrmann, > > > > > > > Setting LC_COLLATE=C is not enough if LC_ALL=en_US.utf8. The result is > > > > a build that has no available co

Re: [U-Boot] [PATCH] fix linker generated lists on non-C locales

2012-12-02 Thread Marek Vasut
Dear Pavel Herrmann, > On Sunday 02 of December 2012 18:50:53 Marek Vasut wrote: > > Dear Pavel Herrmann, > > > > > Setting LC_COLLATE=C is not enough if LC_ALL=en_US.utf8. The result is > > > a build that has no available commands. Setting LC_ALL=C for the > > > generator script helps. > > > >

Re: [U-Boot] [PATCH] fix linker generated lists on non-C locales

2012-12-02 Thread Pavel Herrmann
On Sunday 02 of December 2012 18:50:53 Marek Vasut wrote: > Dear Pavel Herrmann, > > > Setting LC_COLLATE=C is not enough if LC_ALL=en_US.utf8. The result is a > > build that has no available commands. Setting LC_ALL=C for the generator > > script helps. > > > > Signed-off-by: Pavel Herrmann > >

Re: [U-Boot] [PATCH] fix linker generated lists on non-C locales

2012-12-02 Thread Marek Vasut
Dear Pavel Herrmann, > Setting LC_COLLATE=C is not enough if LC_ALL=en_US.utf8. The result is a > build that has no available commands. Setting LC_ALL=C for the generator > script helps. > > Signed-off-by: Pavel Herrmann > --- > helper.mk | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions

[U-Boot] [PATCH] fix linker generated lists on non-C locales

2012-12-02 Thread Pavel Herrmann
Setting LC_COLLATE=C is not enough if LC_ALL=en_US.utf8. The result is a build that has no available commands. Setting LC_ALL=C for the generator script helps. Signed-off-by: Pavel Herrmann --- helper.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helper.mk b/helper.m