Ozan Çağlayan wrote:
> Hi,
>
>
> and so on.. I suspect some locale specific things going on with i386 and
> TARGET_I386 as i->I conversion is a little bit problematic in Turkish
> collation. That's why I experimented a bit with LC_ALL=C but didn't
> figure out anything useful.
>   

And yes that was it:

target_arch_name="`echo $TARGET_ARCH | tr '[:lower:]' '[:upper:]'`"

this can't convert i386 to I386 which then appears in #ifdef
TARGET_I386. This will probably only affect languages in which
CAPITAL(i) = İ
CAPITAL(ı) = I

e.g. Turkish.

I work-arounded it by exporting LC_ALL=C at the beginning of the
configure script. It's on yours now to decide to fix it in upstream or not,

Thanks anyway :)
Regards,

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to