summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/build/libc_eglibc.sh2
-rw-r--r--scripts/functions6
2 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build/libc_eglibc.sh b/scripts/build/libc_eglibc.sh
index c7571da..343ba23 100644
--- a/scripts/build/libc_eglibc.sh
+++ b/scripts/build/libc_eglibc.sh
@@ -72,7 +72,7 @@ do_libc_get() {
[ -a "${CT_LOCAL_TARBALLS_DIR}/${eglibc_localedef}" ] && \
[ -a "${CT_LOCAL_TARBALLS_DIR}/${eglibc_ports}" ] && \
[ "${CT_FORCE_DOWNLOAD}" != "y" ]; then
- CT_DoLog EXTRA "Got 'eglibc-${CT_LIBC_VERSION}' from local storage"
+ CT_DoLog DEBUG "Got 'eglibc-${CT_LIBC_VERSION}' from local storage"
for file in ${eglibc} ${eglibc_linuxthreads} ${eglibc_localedef} ${eglibc_ports}; do
CT_DoExecLog ALL ln -s "${CT_LOCAL_TARBALLS_DIR}/${file}" "${CT_TARBALLS_DIR}/${file}"
done
diff --git a/scripts/functions b/scripts/functions
index d877d3b..d80e2fa 100644
--- a/scripts/functions
+++ b/scripts/functions
@@ -465,7 +465,7 @@ CT_GetFile() {
CT_DoLog DEBUG "Trying '${CT_LOCAL_TARBALLS_DIR}/${file}${ext}'"
if [ -r "${CT_LOCAL_TARBALLS_DIR}/${file}${ext}" -a \
"${CT_FORCE_DOWNLOAD}" != "y" ]; then
- CT_DoLog EXTRA "Got '${file}' from local storage"
+ CT_DoLog DEBUG "Got '${file}' from local storage"
CT_DoExecLog ALL ln -s "${CT_LOCAL_TARBALLS_DIR}/${file}${ext}" "${file}${ext}"
return 0
fi
@@ -489,7 +489,7 @@ CT_GetFile() {
CT_DoLog DEBUG "Trying '${url}/${file}${ext}'"
CT_DoGetFile "${url}/${file}${ext}"
if [ -f "${file}${ext}" ]; then
- CT_DoLog EXTRA "Got '${file}' from the LAN mirror"
+ CT_DoLog DEBUG "Got '${file}' from the LAN mirror"
if [ "${CT_SAVE_TARBALLS}" = "y" ]; then
# The file may already exist if downloads are forced: remove it first
CT_DoLog EXTRA "Saving '${file}' to local storage"
@@ -511,7 +511,7 @@ CT_GetFile() {
CT_DoLog DEBUG "Trying '${url}/${file}${ext}'"
CT_DoGetFile "${url}/${file}${ext}"
if [ -f "${file}${ext}" ]; then
- CT_DoLog EXTRA "Got '${file}' from the Internet"
+ CT_DoLog DEBUG "Got '${file}' from the Internet"
if [ "${CT_SAVE_TARBALLS}" = "y" ]; then
# The file may already exist if downloads are forced: remove it first
CT_DoLog EXTRA "Saving '${file}' to local storage"