# HG changeset patch # User "Yann E. MORIN" # Date 1264268519 -3600 # Node ID 54bbdbf316f334e8cf459341200126c2bd487972 # Parent 8e8b72bdcea08d9d7f1daf5a5b32cceac2539825 libc/uclibc: 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. diff -r 8e8b72bdcea0 -r 54bbdbf316f3 scripts/build/libc/uClibc.sh --- a/scripts/build/libc/uClibc.sh Sat Jan 23 18:40:38 2010 +0100 +++ b/scripts/build/libc/uClibc.sh Sat Jan 23 18:41:59 2010 +0100 @@ -193,8 +193,8 @@ # firmware builder to strip or not. cat <<-ENDSED s/^(TARGET_.*)=y$/# \\1 is not set/ - s/^# TARGET_${CT_KERNEL_ARCH} is not set/TARGET_${CT_KERNEL_ARCH}=y/ - s/^TARGET_ARCH=".*"/TARGET_ARCH="${CT_KERNEL_ARCH}"/ + s/^# TARGET_${CT_ARCH} is not set/TARGET_${CT_ARCH}=y/ + s/^TARGET_ARCH=".*"/TARGET_ARCH="${CT_ARCH}"/ s/.*(DOSTRIP).*/# \\1 is not set/ ENDSED