summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions b/functions
index 7af23c1..0af586d 100644
--- a/functions
+++ b/functions
@@ -309,7 +309,7 @@ add_binary() {
# always add the binary itself
_add_file "${dest#$BASEDIR}" "$binary" "$mode"
- lddout=$(ldd "$binary" 2>/dev/null) || return 1 # not a binary!
+ lddout=$(ldd "$binary" 2>/dev/null) || return 0 # not a binary!
# resolve sodeps
regex='(/.+) \(0x[a-fA-F0-9]+\)'