diff -r 796d1143a1dc -r 8c5881324a79 scripts/crosstool.sh --- a/scripts/crosstool.sh Sun Jan 04 14:39:39 2009 +0000 +++ b/scripts/crosstool.sh Sun Jan 04 22:17:53 2009 +0000 @@ -84,9 +84,6 @@ CT_CC_CORE_EXTRA_CONFIG="${CT_ARCH_CC_CORE_EXTRA_CONFIG} ${CT_CC_CORE_EXTRA_CONFIG}" CT_CC_EXTRA_CONFIG="${CT_ARCH_CC_EXTRA_CONFIG} ${CT_CC_EXTRA_CONFIG}" -# Now, build up the variables from the user-configured options. -CT_LIBC_FILE="${CT_LIBC}-${CT_LIBC_VERSION}" - # Where will we work? : "${CT_WORK_DIR:=${CT_TOP_DIR}/targets}" CT_TARBALLS_DIR="${CT_WORK_DIR}/tarballs" @@ -108,11 +105,6 @@ CT_Abort "I will stop here to avoid any carnage" fi -if [ -n "${CT_LOCAL_TARBALLS_DIR}" ]; then - # Make absolute path, it so much easier! - CT_LOCAL_TARBALLS_DIR=$(CT_MakeAbsolutePath "${CT_LOCAL_TARBALLS_DIR}") -fi - # If the local tarball directory does not exist, say so, and don't try to save there! if [ ! -d "${CT_LOCAL_TARBALLS_DIR}" ]; then CT_DoLog WARN "Directory '${CT_LOCAL_TARBALLS_DIR}' does not exist. Will not save downloaded tarballs to local storage."