# HG changeset patch # User "Yann E. MORIN" # Date 1189931257 0 # Node ID 4e27d82d5c5de549c192dd4463209ec74acc7f2f # Parent ee71450c5a6fc48fc44bcf4825d07615fc22c725 When sstrip is already downloaded, link instead of copying (as for all other components). A little eye-candy fix. diff -r ee71450c5a6f -r 4e27d82d5c5d scripts/build/tools/sstrip.sh --- a/scripts/build/tools/sstrip.sh Sun Sep 16 08:24:55 2007 +0000 +++ b/scripts/build/tools/sstrip.sh Sun Sep 16 08:27:37 2007 +0000 @@ -42,9 +42,9 @@ return 0 fi if [ -f "${CT_LOCAL_TARBALLS_DIR}/sstrip.c" ]; then - CT_DoLog EXTRA "Retrieving \"sstrip.c\" from local storage" - cp -v "${CT_LOCAL_TARBALLS_DIR}/sstrip.c" \ - "${CT_TARBALLS_DIR}/sstrip.c" 2>&1 |CT_DoLog ALL + CT_DoLog EXTRA "Using \"sstrip\" from local storage" + ln -sf "${CT_LOCAL_TARBALLS_DIR}/sstrip.c" \ + "${CT_TARBALLS_DIR}/sstrip.c" 2>&1 |CT_DoLog ALL return 0 fi CT_Pushd "${CT_TARBALLS_DIR}"