When isntalling aliases, send symlinks creation to CT_DEBUG log level.
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jul 17 21:41:39 2007 +0000 (2007-07-17)
changeset 27591c48f27338c
parent 274 71093c57780d
child 276 835178a32fc1
When isntalling aliases, send symlinks creation to CT_DEBUG log level.
scripts/crosstool.sh
     1.1 --- a/scripts/crosstool.sh	Tue Jul 17 21:38:35 2007 +0000
     1.2 +++ b/scripts/crosstool.sh	Tue Jul 17 21:41:39 2007 +0000
     1.3 @@ -443,7 +443,7 @@
     1.4          for t in "${CT_TARGET}-"*; do
     1.5              _t="`echo \"$t\" |sed -r -e 's/^'\"${CT_TARGET}\"'-/'\"${CT_TARGET_ALIAS}\"'-/;'`"
     1.6              CT_DoLog DEBUG "Linking \"${_t}\" -> \"${t}\""
     1.7 -            ln -s "${t}" "${_t}"
     1.8 +            ln -sv "${t}" "${_t}" 2>&1 |CT_DoLog DEBUG
     1.9          done
    1.10          CT_Popd
    1.11      fi