summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-06-18 16:55:07 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-06-18 16:55:07 (GMT)
commit3ffe23e274d4739e0c1356f6baae3ebeb753471c (patch)
treebbf376cfbaeb08a2dab72c636e2991209c49efaf /scripts
parent1015f6f33c1465259b8ff21117e8f80faba00ce9 (diff)
[finish-step] Fix the tools wrappers
Use the correct variable when iterating upon the tools name to correctly link the tools to the wrapper.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/build/internals.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/internals.sh b/scripts/build/internals.sh
index a262c1d..8a887bf 100644
--- a/scripts/build/internals.sh
+++ b/scripts/build/internals.sh
@@ -58,7 +58,7 @@ do_finish() {
# 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