From a9966d1e1cd95baa4c0400c6248f2fab14e2ba48 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Sun, 12 Dec 2010 20:47:40 +0100 Subject: internals: fix stripping Do not try to strip any script. Previously, only shell scripts were ignored, but when the Java frontend is installed, it also installs a Python script. So we have to ignore any "script text executable", and not restrict it to "shell script text executable". Signed-off-by: "Yann E. MORIN" --- scripts/build/internals.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/build/internals.sh b/scripts/build/internals.sh index 4dafafb0..882412fb 100644 --- a/scripts/build/internals.sh +++ b/scripts/build/internals.sh @@ -28,7 +28,7 @@ do_finish() { ; do _type="$( file "${_t}" |cut -d ' ' -f 2- )" case "${_type}" in - *"shell script text executable") + *"script text executable") ;; *executable*) CT_DoExecLog ALL ${CT_HOST}-strip ${strip_args} "${_t}" -- cgit v1.2.3