summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-07-17 21:41:39 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-07-17 21:41:39 (GMT)
commit3f4ac101f2b4392089e68b9307a7773a97d0ce6d (patch)
tree52759a0dcfbc682e130a63b44d163622f5563b16
parent1a32a0fbbc1962afd3b020fdc6dd7ac6d10136ae (diff)
When isntalling aliases, send symlinks creation to CT_DEBUG log level.
-rwxr-xr-xscripts/crosstool.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/crosstool.sh b/scripts/crosstool.sh
index 1fa17c0..7d93da6 100755
--- a/scripts/crosstool.sh
+++ b/scripts/crosstool.sh
@@ -443,7 +443,7 @@ if [ "${CT_ONLY_DOWNLOAD}" != "y" -a "${CT_ONLY_EXTRACT}" != "y" ]; then
for t in "${CT_TARGET}-"*; do
_t="`echo \"$t\" |sed -r -e 's/^'\"${CT_TARGET}\"'-/'\"${CT_TARGET_ALIAS}\"'-/;'`"
CT_DoLog DEBUG "Linking \"${_t}\" -> \"${t}\""
- ln -s "${t}" "${_t}"
+ ln -sv "${t}" "${_t}" 2>&1 |CT_DoLog DEBUG
done
CT_Popd
fi