# HG changeset patch # User "Yann E. MORIN" # Date 1183586174 0 # Node ID 1d9231eecc9bfff03751b398833ff828d2d518af # Parent 73b023845581f664845a2ae7750a2b6dc777106b Before trying to download sstrip (from buildroot), try a local copy first. diff -r 73b023845581 -r 1d9231eecc9b scripts/build/tools/sstrip.sh --- a/scripts/build/tools/sstrip.sh Wed Jul 04 17:37:48 2007 +0000 +++ b/scripts/build/tools/sstrip.sh Wed Jul 04 21:56:14 2007 +0000 @@ -41,6 +41,12 @@ if [ -f "${CT_TARBALLS_DIR}/sstrip.c" ]; then return 0 fi + if [ -f "${CT_LOCAL_TARBALLS_DIR}/sstrip.c" ]; then + CT_DoLog EXTRA "Copying \"sstrip.c\" from local copy" + cp -v "${CT_LOCAL_TARBALLS_DIR}/sstrip.c" \ + "${CT_TARBALLS_DIR}/sstrip.c" 2>&1 |CT_DoLog ALL + return 0 + fi CT_Pushd "${CT_TARBALLS_DIR}" CT_DoLog EXTRA "Retrieving \"sstrip\" (from buildroot's svn)" http_data=`lynx -dump "${sstrip_url}"`