libc/glibc: use CT_ARCH, in place of CT_KERNEL_ARCH
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jan 23 18:40:38 2010 +0100 (2010-01-23)
changeset 17478e8b72bdcea0
parent 1746 5851a36db763
child 1748 54bbdbf316f3
libc/glibc: use CT_ARCH, in place of CT_KERNEL_ARCH

Since we merged the 32/64-bit archs, and we explicitly used
the Linux kernel arch name, we can get rid of CT_KERNEL_ARCH.
scripts/build/libc/glibc.sh
     1.1 --- a/scripts/build/libc/glibc.sh	Sat Jan 23 18:39:28 2010 +0100
     1.2 +++ b/scripts/build/libc/glibc.sh	Sat Jan 23 18:40:38 2010 +0100
     1.3 @@ -115,10 +115,10 @@
     1.4      CT_DoLog EXTRA "Configuring C library"
     1.5  
     1.6      # The x86 arch needs special care... Bizarelly enough... :-(
     1.7 -    case "${CT_KERNEL_ARCH}:${CT_ARCH_BITNESS}" in
     1.8 +    case "${CT_ARCH}:${CT_ARCH_BITNESS}" in
     1.9          x86:32) arch4hdrs="i386";;
    1.10          x86:64) arch4hdrs="x86_64";;
    1.11 -        *)      arch4hdrs="${CT_KERNEL_ARCH}";;
    1.12 +        *)      arch4hdrs="${CT_ARCH}";;
    1.13      esac
    1.14  
    1.15      # The following three things have to be done to build glibc-2.3.x, but they don't hurt older versions.