summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-07-17 21:55:15 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-07-17 21:55:15 (GMT)
commitfc70acd6e759070f19c4372db29454fdcd8f2fff (patch)
tree6fa8a249904079786ee285a1abf4b41e36519b2c /scripts
parent8c23854de216c425e91b9367986f9d63f2d8290e (diff)
Update the download messages for sstrip.c to the same mesages used in scripts/functions.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/build/tools/sstrip.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/build/tools/sstrip.sh b/scripts/build/tools/sstrip.sh
index 7913f87..15a65a5 100644
--- a/scripts/build/tools/sstrip.sh
+++ b/scripts/build/tools/sstrip.sh
@@ -42,7 +42,7 @@ case "${CT_SSTRIP_FROM}" in
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 @@ case "${CT_SSTRIP_FROM}" in
|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() {