summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/build/internals.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build/internals.sh b/scripts/build/internals.sh
index b8a80f2..a262c1d 100644
--- a/scripts/build/internals.sh
+++ b/scripts/build/internals.sh
@@ -56,10 +56,10 @@ do_finish() {
# Do it unconditionally, even for those tools that happen to be shell
# scripts, we don't know if they would in the end spawn a binary...
# 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 ln ".${CT_TARGET}-wrapper" "${t}"
+ 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 ln ".${CT_TARGET}-wrapper" "${_t}"
fi
done