# HG changeset patch # User "Yann E. MORIN" # Date 1245344107 -7200 # Node ID 084d38788c1dd4b3dd55c01e9879c04a8d8eba57 # Parent befdb88324e18e1e80260906d0459a56ea0eb37a [finish-step] Fix the tools wrappers Use the correct variable when iterating upon the tools name to correctly link the tools to the wrapper. diff -r befdb88324e1 -r 084d38788c1d scripts/build/internals.sh --- a/scripts/build/internals.sh Wed Jun 17 15:27:55 2009 +0200 +++ b/scripts/build/internals.sh Thu Jun 18 18:55:07 2009 +0200 @@ -58,7 +58,7 @@ # Just skip symlinks for _t in "${CT_TARGET}-"*; do if [ "$( LANG=C stat -c '%F' "${_t}" )" != "symbolic link" ]; then - CT_DoExecLog ALL mv "${t}" ".${_t}" + CT_DoExecLog ALL mv "${_t}" ".${_t}" CT_DoExecLog ALL ln ".${CT_TARGET}-wrapper" "${_t}" fi done