summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2011-03-22 17:10:00 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2011-03-22 17:10:00 (GMT)
commit006ba5ff15ad21edfc4a6ee3f6c720d4841e259e (patch)
tree3e8f0eb93b0a35c150121b603dadc7af0a59b01e
parentdb6382192f190d624b5388f2dd32202a3bacf03c (diff)
scripts/internals: fix stripping once more
Some scripts have 'very long lines', so the output of 'file' will have that mentioned, such as: POSIX shell script, ASCII text executable, with very long lines Reported-by: Kyle Grieb <grieb.kyle@gmail.com> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> (transplanted from 21025504dbc91d53eced23e337a547d5c1b94686)
-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 3b5331d..743f266 100644
--- a/scripts/build/internals.sh
+++ b/scripts/build/internals.sh
@@ -30,7 +30,7 @@ do_finish() {
; do
_type="$( file "${_t}" |cut -d ' ' -f 2- )"
case "${_type}" in
- *script*executable)
+ *script*executable*)
;;
*executable*)
CT_DoExecLog ALL ${CT_HOST}-strip ${strip_args} "${_t}"