summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroot2014-07-24 23:40:10 +0200
committerroot2014-07-24 23:40:10 +0200
commit698f9e57ba08ea6961f0f646fbd4fd501853a6d7 (patch)
treef7a859c3e1ffec191b6185d2ada8fc599402a0fc
parentKeep split usr if original system has it, add extra logic if no split usr (diff)
downloadtm-scripts-698f9e57ba08ea6961f0f646fbd4fd501853a6d7.tar.gz
tm-scripts-698f9e57ba08ea6961f0f646fbd4fd501853a6d7.tar.xz
tm-scripts-698f9e57ba08ea6961f0f646fbd4fd501853a6d7.zip
[setup_target] Fix find expression for required binaries
-rwxr-xr-xremote/setup_target2
1 files changed, 1 insertions, 1 deletions
diff --git a/remote/setup_target b/remote/setup_target
index 02400cd1..6b9a7a6c 100755
--- a/remote/setup_target
+++ b/remote/setup_target
@@ -153,7 +153,7 @@ copy_files_with_deps () {
else
OPTIONAL="no"
fi
- local FILE_CANDIDATES=$( find . -name "${FILENAME}" -a -executable -a \( -type f -o -type l \) )
+ local FILE_CANDIDATES=$( find . -name "${FILENAME}" -a \( -type f -o -type l \) )
local FINAL_LIST=""
# Check result of find
if [ "$(echo "$FILE_CANDIDATES" | wc -l)" -gt 1 ]; then