[finish-step] Fix the tools wrappers
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Jun 18 18:55:07 2009 +0200 (2009-06-18)
changeset 1413084d38788c1d
parent 1412 befdb88324e1
child 1414 9bb95fa735ac
[finish-step] Fix the tools wrappers

Use the correct variable when iterating upon the tools
name to correctly link the tools to the wrapper.
scripts/build/internals.sh
     1.1 --- a/scripts/build/internals.sh	Wed Jun 17 15:27:55 2009 +0200
     1.2 +++ b/scripts/build/internals.sh	Thu Jun 18 18:55:07 2009 +0200
     1.3 @@ -58,7 +58,7 @@
     1.4          # Just skip symlinks
     1.5          for _t in "${CT_TARGET}-"*; do
     1.6              if [ "$( LANG=C stat -c '%F' "${_t}" )" != "symbolic link" ]; then
     1.7 -                CT_DoExecLog ALL mv "${t}" ".${_t}"
     1.8 +                CT_DoExecLog ALL mv "${_t}" ".${_t}"
     1.9                  CT_DoExecLog ALL ln ".${CT_TARGET}-wrapper" "${_t}"
    1.10              fi
    1.11          done