Before trying to download sstrip (from buildroot), try a local copy first.
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Jul 04 21:56:14 2007 +0000 (2007-07-04)
changeset 2041d9231eecc9b
parent 203 73b023845581
child 205 119e62ecee74
Before trying to download sstrip (from buildroot), try a local copy first.
scripts/build/tools/sstrip.sh
     1.1 --- a/scripts/build/tools/sstrip.sh	Wed Jul 04 17:37:48 2007 +0000
     1.2 +++ b/scripts/build/tools/sstrip.sh	Wed Jul 04 21:56:14 2007 +0000
     1.3 @@ -41,6 +41,12 @@
     1.4              if [ -f "${CT_TARBALLS_DIR}/sstrip.c" ]; then
     1.5                  return 0
     1.6              fi
     1.7 +            if [ -f "${CT_LOCAL_TARBALLS_DIR}/sstrip.c" ]; then
     1.8 +                CT_DoLog EXTRA "Copying \"sstrip.c\" from local copy"
     1.9 +                cp -v "${CT_LOCAL_TARBALLS_DIR}/sstrip.c"   \
    1.10 +                      "${CT_TARBALLS_DIR}/sstrip.c"         2>&1 |CT_DoLog ALL
    1.11 +                return 0
    1.12 +            fi
    1.13              CT_Pushd "${CT_TARBALLS_DIR}"
    1.14              CT_DoLog EXTRA "Retrieving \"sstrip\" (from buildroot's svn)"
    1.15              http_data=`lynx -dump "${sstrip_url}"`