On Fri, Oct 16, 2009 at 10:03:49AM +0200, Marc Andre Tanner wrote:
>On Tue, Oct 13, 2009 at 12:01:08PM +0200, Marc Andre Tanner wrote:

>> Ok, thanks for the clarification. I hope the following patch on top of your 
>> previous one doese what you want?
>
>Could you or someone else please comment on this patch? I would like to get 
>this functionality included in current git.

>>  # Warning! Beware tr_TR toupper/tolower exceptions!
>> -# TODO: handle/prefer UCLIBC_BUILD_MINIMAL_LOCALE ?
>>  $(locale_OUT)/wctables.h: $(locale_OUT)/gen_wctype
>>      @$(disp_gen)
>> -    $(Q)$< $(FLAG-locale-verbose) en_US > $@ || \
>> -            $< $(FLAG-locale-verbose) en_US.UTF-8 > $@ || \
>> -            $< $(FLAG-locale-verbose) en_US.iso8859-1 > $@ || \
>> -            $< $(FLAG-locale-verbose) en_GB > $@ || \
>> -            $< $(FLAG-locale-verbose) en_GB.UTF-8 > $@
>> +    $(Q)for locale in $(call qstrip,$(UCLIBC_BUILD_MINIMAL_LOCALES)) en_US 
>> en_GB; do \
>> +            $< $(FLAG-locale-verbose) $$locale > $@ || \
>> +            $< $(FLAG-locale-verbose) $$locale.UTF-8 > $@ && break; \
>> +    done

previously we had
for locale in $(call ...);do
  for charset in '' .UTF-8 .iso8859-1; do

but you dropped 8859-1 ?

Please send a complete, tested patch (I've by now deleted what i used to
describe my initial suggestion).
TIA,
_______________________________________________
uClibc mailing list
[email protected]
http://lists.busybox.net/mailman/listinfo/uclibc

Reply via email to