# HG changeset patch # User "Yann E. MORIN" # Date 1184709315 0 # Node ID 5c1f3b252a0eae954d592c2ce6f5bd32bdf7fa38 # Parent 4c32aa5569b2bd6c407cdccfb86d46e5e8e19ff1 Update the download messages for sstrip.c to the same mesages used in scripts/functions. diff -r 4c32aa5569b2 -r 5c1f3b252a0e scripts/build/tools/sstrip.sh --- a/scripts/build/tools/sstrip.sh Tue Jul 17 21:49:43 2007 +0000 +++ b/scripts/build/tools/sstrip.sh Tue Jul 17 21:55:15 2007 +0000 @@ -42,7 +42,7 @@ return 0 fi if [ -f "${CT_LOCAL_TARBALLS_DIR}/sstrip.c" ]; then - CT_DoLog EXTRA "Retrieving \"sstrip.c\" from local copy" + 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 return 0 @@ -57,7 +57,11 @@ |egrep '^ *8\.' \ |sed -r -e 's/^ *'${link}'\. +(.+)$/\1/;'` CT_DoGetFile "${rev_url}" 2>&1 |CT_DoLog ALL - mv sstrip.c?* sstrip.c + mv -v sstrip.c?* sstrip.c 2>&1 |CT_DoLog DEBUG + if [ "${CT_SAVE_TARBALLS}" = "y" ]; then + CT_DoLog EXTRA "Saving \sstrip.c\" to local storage" + cp -v sstrip.c "${CT_LOCAL_TARBALLS_DIR}" 2>&1 |CT_DoLog DEBUG + fi CT_Popd } do_tools_sstrip_extract() {