diff -r 2f7b676c7b2f -r 2fa4b675a9a3 scripts/crosstool.sh --- a/scripts/crosstool.sh Fri Sep 14 17:43:16 2007 +0000 +++ b/scripts/crosstool.sh Fri Sep 14 21:50:30 2007 +0000 @@ -304,13 +304,6 @@ # Ha. cygwin host have an .exe suffix (extension) for executables. [ "${CT_KERNEL}" = "cygwin" ] && EXEEXT=".exe" || EXEEXT="" - # Transform the ARCH into a kernel-understandable ARCH - case "${CT_ARCH}" in - x86) CT_KERNEL_ARCH=i386;; - ppc) CT_KERNEL_ARCH=powerpc;; - *) CT_KERNEL_ARCH="${CT_ARCH}";; - esac - # Build up the TARGET_CFLAGS from user-provided options # Override with user-specified CFLAGS [ -n "${CT_ARCH_CPU}" ] && CT_TARGET_CFLAGS="-mcpu=${CT_ARCH_CPU} ${CT_TARGET_CFLAGS}"